feat:新增自定义字典功能

This commit is contained in:
不做码农
2022-09-16 08:20:09 +08:00
parent 698409d541
commit a5a3b2d19d
9 changed files with 70 additions and 8 deletions

View File

@@ -107,6 +107,7 @@ CREATE TABLE sys_dict_type (
update_by varchar(64) NULL DEFAULT '' ,-- '更新者',
update_time datetime NULL DEFAULT NULL ,-- '更新时间',
remark varchar(500) NULL DEFAULT NULL ,-- '备注',
customSql varchar(500) NULL DEFAULT NULL ,-- '自定义sql',
)
GO
CREATE UNIQUE INDEX dictType ON dbo.sys_dict_type(dictType)