feat: 日志分页列表和添加操作日志记录

This commit is contained in:
hxr
2024-06-28 08:06:26 +08:00
parent 9b5fd036e5
commit 3ba34ca8ee
17 changed files with 192 additions and 26 deletions

View File

@@ -56,7 +56,7 @@ public class ${table.serviceImplName} extends ${superServiceImplClass}<${table.m
Page<${entity}BO> boPage = this.baseMapper.listPaged${entity}s(page, queryParams);
// 实体转换
return ${firstCharLowerCaseEntity}Converter.bo2PageVo(boPage);
return ${firstCharLowerCaseEntity}Converter.toPageVo(boPage);
}
/**