新增员工党员字段

This commit is contained in:
wkc
2026-04-17 11:04:52 +08:00
parent 3286795f98
commit 03a4acb63a
23 changed files with 453 additions and 68 deletions

View File

@@ -0,0 +1,14 @@
-- 是否标记字典初始化脚本
DELETE FROM sys_dict_data WHERE dict_type = 'ccdi_yes_no_flag';
DELETE FROM sys_dict_type WHERE dict_type = 'ccdi_yes_no_flag';
INSERT INTO sys_dict_type (dict_name, dict_type, status, create_by, create_time, remark)
VALUES ('是否标记', 'ccdi_yes_no_flag', '0', 'admin', NOW(), '是否标记列表');
INSERT INTO sys_dict_data (dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, remark)
VALUES
(1, '', '1', 'ccdi_yes_no_flag', '', 'primary', 'N', '0', 'admin', NOW(), ''),
(2, '', '0', 'ccdi_yes_no_flag', '', 'danger', 'Y', '0', 'admin', NOW(), '');
-- 执行完成后,请在字典管理中刷新缓存,确保模板下拉立即生效。