v3.30.0 【增加】字典项增加回显样式;【优化】文件S3协议对最新minio的支持;【优化】代码生成;【优化】前端vite编译配置

This commit is contained in:
zhuoda
2026-03-02 11:52:25 +08:00
parent e265dd1546
commit 07694af6ba
5 changed files with 37 additions and 13 deletions

View File

@@ -216,7 +216,7 @@ CREATE TABLE `t_dict_data` (
`dict_id` bigint NOT NULL COMMENT '字典id',
`data_value` varchar(500) NOT NULL COMMENT '字典项值',
`data_label` varchar(500) NOT NULL COMMENT '字典项显示名称',
`data_style` varchar(500) NULL COMMENT '字典项样式'
`data_style` varchar(500) NULL COMMENT '字典项样式',
`remark` varchar(1000) DEFAULT NULL COMMENT '备注',
`sort_order` int NOT NULL COMMENT '排序(越大越靠前)',
`disabled_flag` tinyint NOT NULL DEFAULT '0' COMMENT '禁用状态',