fix(repository): 修复标记为已读方法中的语法错误
- 移除 markAsRead 方法签名中的错误字符 - 确保方法能够正确接收并处理 ID 列表参数 - 修正代码格式提升可读性
This commit is contained in:
parent
c010fd3bc7
commit
be84a05894
|
|
@ -26,7 +26,7 @@ public class QmsTodoItemServiceImpl extends ServiceImpl<QmsTodoItemMapper, QmsTo
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void markAsRead(List<Long> ids) {】
|
public void markAsRead(List<Long> ids) {
|
||||||
if (ids == null || ids.isEmpty()) {
|
if (ids == null || ids.isEmpty()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue