Commit 6cbf14cb authored by wzp's avatar wzp

修改bug

parent 1048b7ba
...@@ -268,10 +268,10 @@ public class AuditServiceImpl extends ServiceImpl<AuditMapper, Audit> implements ...@@ -268,10 +268,10 @@ public class AuditServiceImpl extends ServiceImpl<AuditMapper, Audit> implements
update = this.videoContentService.removeById(videoContent); update = this.videoContentService.removeById(videoContent);
break; break;
case ADD: case ADD:
update = true; update = this.videoContentService.updateById(videoContent);;
break; break;
case EDIT: case EDIT:
update = true; update = this.videoContentService.updateById(videoContent);;
break; break;
default: default:
} }
...@@ -309,10 +309,10 @@ public class AuditServiceImpl extends ServiceImpl<AuditMapper, Audit> implements ...@@ -309,10 +309,10 @@ public class AuditServiceImpl extends ServiceImpl<AuditMapper, Audit> implements
update = this.exhibitionBoardService.removeById(exhibitionBoard); update = this.exhibitionBoardService.removeById(exhibitionBoard);
break; break;
case ADD: case ADD:
update = true; update = this.exhibitionBoardService.updateById(exhibitionBoard);;
break; break;
case EDIT: case EDIT:
update = true; update = this.exhibitionBoardService.updateById(exhibitionBoard);;
break; break;
default: default:
} }
...@@ -350,10 +350,10 @@ public class AuditServiceImpl extends ServiceImpl<AuditMapper, Audit> implements ...@@ -350,10 +350,10 @@ public class AuditServiceImpl extends ServiceImpl<AuditMapper, Audit> implements
update = this.learningContentService.removeById(learningContent); update = this.learningContentService.removeById(learningContent);
break; break;
case ADD: case ADD:
update = true; update = this.learningContentService.updateById(learningContent);
break; break;
case EDIT: case EDIT:
update = true; update = this.learningContentService.updateById(learningContent);
break; break;
default: 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