|
b305dd7e53
|
refactor(generator): 简化前端模板命名,例如:UserAddDrawer => AddDrawer
|
2025-08-15 22:34:26 +08:00 |
|
|
7f05453d8c
|
fix(generator): 修复代码生成前端 API 模板错误
|
2025-07-28 20:16:34 +08:00 |
|
|
e6169bdb6c
|
build: continew-starter 2.13.3 => 2.13.4
1.移除 continew-starter-security-password 模块依赖及相关配置(已融合到 security-crypto 模块)
2.更新 continew-starter-security-crypto 模块配置
3.BaseController 增加跳过 DICT、DICT_TREE 接口权限处理
4.EnableCrudRestController => EnableCrudApi
5.调整 CRUD 相关 Controller API 接口配置,增加 DICT 或 DICT_TREE 接口,移除原 CommonController 接口
|
2025-07-27 09:36:29 +08:00 |
|
|
7f0059984d
|
refactor: 重构内部 API 依赖模式(降低耦合,公众号投票结论),在 common 模块新增 api 包,在对应 biz 模块增加实现
|
2025-07-26 10:24:25 +08:00 |
|
|
24f233e2b5
|
refactor: 优化 Lombok 配置,全局禁用 Log4j、Log4j2 注解,请使用 Slf4j
|
2025-07-25 21:58:16 +08:00 |
|
|
33d89431cf
|
refactor: 使用 CollUtils 替代部分 Stream 操作,提高代码的可读性,减少代码行数(缺点:方法写起来不如流式代码舒爽)
|
2025-07-17 23:05:59 +08:00 |
|
Pluto
|
ea2e5b67a2
|
refactor(generator): 更新模板文件中的导入路径
|
2025-07-08 12:15:00 +00:00 |
|
|
c5092aa618
|
fix: 修复升级遗漏的 CrudApi 替换(单个删除和批量删除已拆分为两个API,由于项目前端之前已经统一改造为批量删除,所以需要调整)
|
2025-07-06 21:38:11 +08:00 |
|
|
2138bee42c
|
build: continew-starter 2.12.2 => 2.13.0
1.引入 continew-starter-validation(从 core 拆分)、sa-token-sign(从 sa-token-core 拆分并调整了部分 API)
2.Starter import 包路径调整
- EasyExcel 替换为 FastExcel:com.alibaba.excel(EasyExcel) => cn.idev.excel(FastExcel)
- top.continew.starter.file.excel => top.continew.starter.excel
- top.continew.starter.core.validation.constraints => top.continew.starter.validation.constraints
- top.continew.starter.core.validation.ValidationUtils、CheckUtils、Validator => top.continew.starter.core.util.validation
- cn.dev33.satoken.sign => cn.dev33.satoken.sign.template
- top.continew.starter.core.autoconfigure.project => top.continew.starter.core.autoconfigure.application
- top.continew.starter.data.core、top.continew.starter.data.mp => top.continew.starter.data
- top.continew.starter.data.mp.base.BaseMapper => top.continew.starter.data.mapper.BaseMapper
2.Starter 基础类命名调整
CRUD:AbstractBaseController => AbstractCrudController,BaseService => CrudService,BaseServiceImpl => CrudServiceImpl
Core:ProjectProperties(项目配置,project.xxx) => ApplicationProperties(应用配置更为贴切,且变量 application.xx 可以和 Maven 变量显著区分开)
3.groupId 调整:top.continew.starter、top.continew.admin(避免部分童鞋全局替换包名时出现把 starter 也一起替换了!)
4.Admin import 包路径调整:BaseController、BaseDO等 => common.base
5.新增 BaseService、BaseServiceImpl 替代 Starter 原 BaseXxx,方便用户根据项目实际需要重写或新增全局通用接口、方法
6.snail-job server 数据库脚本更新至 v1.5.0
7.Valid 及 Validated 使用梳理(CrudService 支持通过在实现类添加 Validated 注解来实现 Service 层基础校验)
|
2025-07-05 21:33:45 +08:00 |
|
|
efb65c21a1
|
refactor: 为 Mapper 接口增加 Mapper 注解,以消除 IDEA 警告标志(减少小白咨询)
实际它并不影响运行,但为了减少麻烦,加上不报警告,那就加上吧
|
2025-07-04 20:58:51 +08:00 |
|
Pluto
|
930b1d461b
|
refactor(generator): 为枚举类型的字段添加自定义 Excel 转换器
|
2025-07-02 03:02:38 +00:00 |
|
|
e0a7cfd448
|
fix(generator): 代码生成详情页模板增加对字典字段的翻译处理
Closes #ICGQVB
|
2025-06-20 21:52:55 +08:00 |
|
|
0322c3ecf2
|
chore: 格式化部分代码
|
2025-06-15 17:58:42 +08:00 |
|
|
93bd70dc5c
|
refactor: 拆分接口文档分组配置及 controller 到各自模块
|
2025-06-14 22:12:05 +08:00 |
|
|
1ef54174b0
|
build: continew-starter 2.12.0 => 2.12.1
1.原 Web 工具类迁移到 core 模块
2.pom.xml 增加 name 和 packaging 标签
3.使用 WebSocketUtils.sendMessage 群发消息
4.Jackson 大数值序列化增加多模式支持
|
2025-06-09 22:03:56 +08:00 |
|
|
385085826f
|
style: 调整代码风格 null == xx => xx == null(更符合大众风格)
|
2025-06-01 11:13:03 +08:00 |
|
|
73e247775c
|
fix(generator): 修复未绑定字典时,生成下拉选项报错的问题
|
2025-05-26 21:44:16 +08:00 |
|
|
a07a2dcd65
|
style: 调整代码风格 null != xx => xx != null(更符合大众风格)
|
2025-05-21 22:21:39 +08:00 |
|
|
bf3e1590fa
|
style: 统一请求参数、响应参数注释
|
2025-04-17 21:57:09 +08:00 |
|
邱权武
|
1c85b43931
|
fix(generator): 修复代码生成前端api文件模版路径问题 (#155)
|
2025-04-17 14:11:33 +08:00 |
|
|
4ae716c34f
|
style: 统一请求参数、响应参数注释
|
2025-04-16 21:46:08 +08:00 |
|
Pluto
|
32ac708ede
|
refactor(generator): 优化代码生成模板中的枚举类导入语句
|
2025-04-16 09:47:35 +00:00 |
|
|
82d8dc3985
|
build: continew-starter 2.10.0 => 2.11.0
1.SaToken 升级适配
2.DictField 注解 => DictModel
3.BaseIdResp => IdResp
4.CRUD 删除接口由 URL 传参重构为请求体传参
5.访问日志打印问题修复等
|
2025-04-13 18:00:17 +08:00 |
|
风筝LC
|
1de7b20fb0
|
feat(generator): 支持生成枚举类型属性
|
2025-04-05 14:31:11 +00:00 |
|
|
19639c946a
|
refactor: 用 @Email 和 @Mobile 注解替换了部分验证,提高了代码可读性,修改了多处错误提示信息,使其更加友好
|
2025-03-27 21:21:53 +08:00 |
|
|
cae6da298c
|
build: continew-starter 2.9.0 => 2.10.0
1.适配限流模块、链路追踪模块、访问日志等配置调整
2.适配Crud模块 API 命名变化(add => create、detail => get)
3.适配 sa-token、snail-job 升级变化
|
2025-03-26 22:58:21 +08:00 |
|
|
6b17742a1b
|
refactor(generator): 更新代码生成列表模板
|
2025-03-18 21:39:21 +08:00 |
|
|
2e76caa35e
|
fix(generator): 修复前端模板字典码使用错误
|
2025-03-12 19:58:34 +08:00 |
|
luoqiz
|
82f3df59c3
|
fix(generator): 修复代码生成 PgSQL 菜单权限错误 (#136)
|
2025-03-05 18:19:54 +08:00 |
|
|
98569ae205
|
fix(generator): 优化 Mapper XML 文件生成位置
Closes #134
|
2025-03-02 21:13:49 +08:00 |
|
|
f7fe9dbfe7
|
chore(generator): 完善前端模板
|
2025-02-27 22:44:30 +08:00 |
|
|
cefbf82f20
|
chore: continew-starter 2.8.2 => 2.8.3
1.移除 BaseReq、BaseDO、BaseCreateDO、BaseUpdateDO 等(已移动到 Admin 项目内)
2.移除 BaseReq
3.修复查询条件校验无效的问题
4.调整版本为 3.5.0-SNAPSHOT,方便区分稳定版和快照版
|
2025-01-16 21:53:08 +08:00 |
|
|
0fab8e4a84
|
chore(generator): 优化代码生成模板
|
2025-01-13 23:35:08 +08:00 |
|
|
498e680672
|
refactor: 调整 starter 内的 BaseDO、BaseCreateDO、BaseUpdateDO 到 admin 项目
|
2025-01-12 23:16:21 +08:00 |
|
luoqiz
|
653802efbe
|
feat(generator): 源项目内生成代码文件 (#125)
|
2025-01-12 22:32:14 +08:00 |
|
|
ee46e47361
|
revert(generator): 还原静态模型变量设置,修复 Menu.ftl 生成报错
|
2025-01-08 09:20:24 +08:00 |
|
|
d12c68d243
|
chore: continew-starter 2.8.0 => 2.8.1
|
2025-01-06 21:29:35 +08:00 |
|
|
144251b21e
|
refactor: 调整 starter 内的 BaseResp、BaseDetailResp 到 admin 项目
|
2024-12-27 20:48:38 +08:00 |
|
|
b51936445d
|
feat(generator): 代码生成新增 Mapper.xml 模板
|
2024-12-12 21:16:58 +08:00 |
|
|
a7296a3627
|
feat(generator): 生成预览支持批量
|
2024-12-12 20:51:26 +08:00 |
|
luoqiz
|
75d2662365
|
fix(generator): 前端页面生成表单类型 (#110)
|
2024-12-12 19:20:40 +08:00 |
|
luoqiz
|
9ebecdc193
|
refactor(generator): 生成菜单脚本添加ID (#109)
|
2024-12-12 13:33:35 +08:00 |
|
luoqiz
|
4c8ebf2d0f
|
refactor: 消除前端红色报警、更新表格创建者和更新者字段索引,自定义单选框数据 (#108)
|
2024-12-12 09:26:25 +08:00 |
|
|
af403d055a
|
fix(generator): 修复 PostgreSQL 菜单 SQL 脚本模板错误 (#107)
|
2024-12-11 21:45:28 +08:00 |
|
|
d7ae7b4e42
|
chore: continew-starter 2.7.4 => 2.7.5
1.BaseServiceImpl 所在包调整
2.BaseController 改为在 Admin common 模块编写(重构权限校验 checkPermission 处理)
3.CRUD ValidateGroup => CrudValidationGroup
4.Admin ValidateGroup => ValidationGroup
5.修复 Query 查询数组范围报错
Closes #IB8711
|
2024-12-06 22:06:23 +08:00 |
|
|
6b64ae3e07
|
fix(generator): 修复 columnSize 类型错误,兼容无注释字段配置
|
2024-11-23 23:11:25 +08:00 |
|
|
66f55cdf70
|
chore: continew-starter 2.7.3 => 2.7.4
|
2024-11-18 23:19:34 +08:00 |
|
|
4454daa9e0
|
refactor(open): 优化应用管理代码
|
2024-11-18 23:17:39 +08:00 |
|
thomas.li
|
ff3f23daff
|
fix: 代码生成模版 样式标签 scss 结束引号
|
2024-11-18 13:36:10 +08:00 |
|
|
3116836b01
|
chore: 优化部分注释
|
2024-11-17 21:58:55 +08:00 |
|