fix: 优化逻辑

This commit is contained in:
tangwei 2026-08-12 09:40:18 +08:00
parent 42ea915d6c
commit bd8472db2e

View File

@ -1067,8 +1067,8 @@ public class MsOperationLogServiceImpl extends ServiceImpl<MsOperationLogMapper,
LambdaQueryWrapper<MsOperationLogDetail> wrapper = new LambdaQueryWrapper<>(); LambdaQueryWrapper<MsOperationLogDetail> wrapper = new LambdaQueryWrapper<>();
wrapper.eq(MsOperationLogDetail::getMainId, mainId) wrapper.eq(MsOperationLogDetail::getMainId, mainId)
.notIn(MsOperationLogDetail::getFieldCode, .notIn(MsOperationLogDetail::getFieldCode,
"recordUser", "recordTime", "modifyUser", "modifyTime", "RECORD_USER", "RECORD_TIME", "MODIFY_USER", "MODIFY_TIME",
"isDeleted", "deleteUser", "deleteTime"); "IS_DELETED", "DELETE_USER", "DELETE_TIME");
return msOperationLogDetailMapper.selectList(wrapper); return msOperationLogDetailMapper.selectList(wrapper);
} }