refactor(notice): 删除冗余注释

- 移除了 BulletinServiceImpl 类中 delete 方法上的 TODO 注释
- 该注释标记了需要解决重复问题,但没有提供具体描述或解决方案
This commit is contained in:
zhuangtianxiang 2024-12-09 16:17:09 +08:00
parent 6fd1c6b81d
commit 396dfc5d2c

View File

@ -204,7 +204,6 @@ public class BulletinServiceImpl extends ServiceImpl<BulletinRepository, Bulleti
} }
@Override @Override
//TODO 解决重复
public Boolean delete(Long id) { public Boolean delete(Long id) {
LambdaQueryWrapper<BulletinAttachment> queryWrapper = new LambdaQueryWrapper<>(); LambdaQueryWrapper<BulletinAttachment> queryWrapper = new LambdaQueryWrapper<>();
queryWrapper.eq(BulletinAttachment::getAttachmentId, id); queryWrapper.eq(BulletinAttachment::getAttachmentId, id);