Commit 38936c44 authored by liqin's avatar liqin 💬

bug fixed

parent 9d837915
......@@ -297,6 +297,7 @@ public class AuditServiceImpl extends ServiceImpl<AuditMapper, Audit> implements
one.setPublished(true); //todo
update = this.videoContentService.updateById(one);
this.videoContentTmpService.removeById(videoContentId);
this.assetTmpService.remove(Wrappers.<AssetTmp>lambdaUpdate().eq(AssetTmp::getRefItemId, videoContentId));
break;
default:
}
......@@ -376,6 +377,7 @@ public class AuditServiceImpl extends ServiceImpl<AuditMapper, Audit> implements
one.setPublished(true); //todo
update = this.exhibitionBoardService.updateById(one);
this.exhibitionBoardTmpService.removeById(exhibitionBoardId);
this.assetTmpService.remove(Wrappers.<AssetTmp>lambdaUpdate().eq(AssetTmp::getRefItemId, exhibitionBoardId));
break;
default:
}
......
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