@@ -74,6 +74,9 @@ public class CaseVideoFolderServiceImpl extends ServiceImpl<ICaseVideoFolderMapp
this.save(videoFolder);
return videoFolder;
}
- return this.getById(folderId);
+ CaseVideoFolder byId = this.getById(folderId);
+ byId.setUploadStatus(0);
+ this.updateById(byId);
+ return byId;