|
@@ -417,7 +417,9 @@ public class ProductCategoryService extends ServiceImpl<ProductCategoryMapper, P
|
|
|
//查询文件
|
|
|
if (guids.size() != 0) {
|
|
|
String res = fileManagerService.getSystemFileFromFMS(guids);
|
|
|
- systemFiles = JSONObject.parseArray(res, SystemFile.class);
|
|
|
+ if(res!=null&&!res.trim().equals("")) {
|
|
|
+ systemFiles = JSONObject.parseArray(res, SystemFile.class);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
//装载信息
|