海南数据不一致问题处理

This commit is contained in:
2025-12-26 15:29:33 +08:00
parent c3cc39973e
commit faac7953d3
10 changed files with 179 additions and 48 deletions

View File

@@ -322,10 +322,7 @@ public class SgEventServiceImpl extends ServiceImpl<SgEventMapper, SgEvent> impl
@Override
public boolean deleteEventData(List<String> ids) {
return this.lambdaUpdate()
.set(SgEvent::getState, DataStateEnum.DELETED.getCode())
.in(SgEvent::getId, ids)
.update();
return this.removeByIds(ids);
}
@Override