revert: 恢复被挤掉的代码(标准逻辑删除)

This commit is contained in:
2023-09-18 17:30:06 +08:00
parent a52b8e1389
commit 79328fae08
@@ -555,7 +555,7 @@ public class LawsCommonServiceImpl implements ILawsCommonService {
}
List<String> idList = Arrays.asList(ids.split(","));
// 操作数据库进行删除操作
int rowsDeleted = lawsCommonMapper.deleteByIdsAndModule(tableName, idList);
int rowsDeleted = lawsCommonMapper.logicalDeleteByIdsAndModule(tableName, idList);
if (rowsDeleted > 0) {
return MessageUtils.getMessage(ResultCommon.OK);
}