Commit Graph

58 Commits

Author SHA1 Message Date
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
31cdf86eb6 refactor(schedule): 使用 Snail Job Open API(SDK API) 替换修改状态接口
目前 Snail Job Open API(SDK API) 的设计偏向于后端代码内直接使用的场景,区别于它的 Web API。
如果你需要创建任务并获取到 ID,可以通过它的 Open API 来直接创建。

Closes #171
2025-06-21 11:42:46 +08: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
9d6d7984d5 refactor(schedule): 新增自定义异常优化任务管理错误提示 2025-05-21 22:24:05 +08:00
a07a2dcd65 style: 调整代码风格 null != xx => xx != null(更符合大众风格) 2025-05-21 22:21:39 +08:00
056eb8a373 feat(schedule): 新增 ConditionalOnEnabledScheduleJob 注解 2025-05-18 15:33:38 +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
c041496f65 refactor(schedule): 重构任务调度模块,使用 OpenFeign 替代 WebClient 2025-03-28 23:07:52 +08:00
19639c946a refactor: 用 @Email 和 @Mobile 注解替换了部分验证,提高了代码可读性,修改了多处错误提示信息,使其更加友好 2025-03-27 21:21:53 +08:00
7d4ae0b35a refactor: 移除 DateTimeFormat 注解的使用,日期类型统一改为 LocalDateTime
starter-web 模块已支持 Query 日期时间转换
2025-03-26 23:17:11 +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
394b93ead5 refactor(system): 重构短信配置功能模块 2025-03-19 22:31:20 +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
22b3564a22 refactor(open): 优化 API 参数签名处理 2024-11-20 20:41:21 +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
d1b38242b9 refactor(open): 重构及优化应用管理代码 2024-11-17 22:18:02 +08:00
3116836b01 chore: 优化部分注释 2024-11-17 21:58:55 +08:00