Commit 3853545f authored by jiawei's avatar jiawei

视频修改时,需要修改自生状态为待初审

parent 8e59f8bf
...@@ -158,6 +158,9 @@ public class VideoContentController extends BaseController { ...@@ -158,6 +158,9 @@ public class VideoContentController extends BaseController {
.modelData(JSONObject.toJSONString(videoContent)) .modelData(JSONObject.toJSONString(videoContent))
.build(); .build();
this.auditService.save(audit); this.auditService.save(audit);
//修改自身审核状态信息为待初审
videoContent.setAuditStatus(AuditStatusEnum.TBC.name());
videoContentService.updateById(videoContent);
return getSuccessResult(); return getSuccessResult();
} }
......
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