fix
This commit is contained in:
parent
7fd9e9e9e0
commit
4a882aa4e3
|
|
@ -46,7 +46,7 @@ public class DevInfoServiceImpl implements IDevInfoService
|
|||
{
|
||||
DevInfoVo devInfoVo = devInfoMapper.selectDevInfoByMaId(maId);
|
||||
List<SysFile> files = devInfoMapper.getFilesByMaId(maId);
|
||||
if (!CollectionUtils.isEmpty(files)) {
|
||||
if (!CollectionUtils.isEmpty(files) && files.get(0) != null) {
|
||||
List<String> picList = new ArrayList();
|
||||
for (SysFile file : files) {
|
||||
if (ASPECT_PICTURE.equals(file.getName())) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue