|
@@ -48,5 +48,13 @@ public class PcBladeNoticeServiceImpl extends BaseServiceImpl<PcBladeNoticeMappe
|
|
|
return Collections.emptyList();
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public boolean deleteNotice(Long id) {
|
|
|
+ PcBladeNotice notice = this.getById(id);
|
|
|
+ //修改公告的删除状态
|
|
|
+ notice.setIsDeleted(1);
|
|
|
+ return this.updateById(notice);
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
}
|