Commit f0ce4633 authored by unset's avatar unset

添加通知信息

parent 8b423336
......@@ -133,8 +133,12 @@ public class ImageImgStorageBiz extends BaseBiz<ImageImgStorageMapper,ImageImgSt
if (arr != null) {
for (String id : arr) {
if (StringUtils.isNotBlank(id)) {
ImageImgStorage imageImgStorage = getDetail(Integer.valueOf(id)).getData();
ImageImgStorage imageImgStorage = selectById(Integer.valueOf(id));
if (imageImgStorage != null) {
List<ImageInfoRelation> imageInfoRelationList = imageInfoRelationBiz.getAllById(imageImgStorage.getId(), 1);
if (imageInfoRelationList != null) {
imageImgStorage.setImageInfoRelationList(imageInfoRelationList);
}
list.add(imageImgStorage);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment