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<>();
wrapper.eq(MsOperationLogDetail::getMainId, mainId)
.notIn(MsOperationLogDetail::getFieldCode,
"recordUser", "recordTime", "modifyUser", "modifyTime",
"isDeleted", "deleteUser", "deleteTime");
"RECORD_USER", "RECORD_TIME", "MODIFY_USER", "MODIFY_TIME",
"IS_DELETED", "DELETE_USER", "DELETE_TIME");
return msOperationLogDetailMapper.selectList(wrapper);
}