refactor(codegen): 优化代码生成模板

- 将 API路径和权限标识改为使用 kebab-case 风格- 优化了部分代码注释和命名
- 优化代码生成的注释,增加返回值解释
This commit is contained in:
Theo
2025-04-02 15:21:55 +08:00
parent ded1a527ea
commit abb67a0bf9
7 changed files with 29 additions and 25 deletions

View File

@@ -21,7 +21,7 @@ public interface ${entityName}Mapper extends BaseMapper<${entityName}> {
*
* @param page 分页对象
* @param queryParams 查询参数
* @return
* @return {@link Page<${entityName}VO>} $!{businessName}分页列表
*/
Page<${entityName}VO> get${entityName}Page(Page<${entityName}VO> page, ${entityName}Query queryParams);