From 72c6dbb13f385ecd1c8be628691143c3ede05392 Mon Sep 17 00:00:00 2001 From: wangzhijiang <12345678> Date: Mon, 6 Mar 2023 09:41:32 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=A4=E8=AF=81=E8=99=9A=E6=8B=9F=E6=B8=85?= =?UTF-8?q?=E5=8D=95-=E5=AF=B9=E6=8E=A5-=E5=A4=84=E7=90=86=E6=B8=85?= =?UTF-8?q?=E5=8D=95=E7=8A=B6=E6=80=81=E3=80=82=E5=A2=9E=E5=8A=A0=E6=A0=87?= =?UTF-8?q?=E7=AD=BE=E7=AE=A1=E7=90=86=E6=95=B0=E6=8D=AEsql=E5=90=8C?= =?UTF-8?q?=E6=AD=A5=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jero-boot/db/蔚来标准sql/dev_2nd_period.sql | 7 +++++++ .../modules/authDummy/entity/AuthDummyInventoryBaseEO.java | 1 + 2 files changed, 8 insertions(+) diff --git a/jero-boot/db/蔚来标准sql/dev_2nd_period.sql b/jero-boot/db/蔚来标准sql/dev_2nd_period.sql index 7dfc766b0..5f9aa13a3 100644 --- a/jero-boot/db/蔚来标准sql/dev_2nd_period.sql +++ b/jero-boot/db/蔚来标准sql/dev_2nd_period.sql @@ -275,3 +275,10 @@ CREATE TABLE `project_certification_inventory` ( `certification_progress` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '认证进度', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '项目库-认证清单表' ROW_FORMAT = Dynamic; + + +-- 标签管理-增加认证虚拟清单状态数据。 2023-03-06 未同步生产环境 +INSERT INTO `sys_dict` (`id`, `dict_name`, `dict_code`, `description`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `type`, `dict_en_name`, `is_tag_dict`, `is_read_only`, `attribute_type`, `order_num`) VALUES ('1632552252162908162', '认证虚拟清单状态', 'ren4_zheng4_xu1_ni3_qing1_dan1_zhuang4_tai4', '认证虚拟清单状态', 0, 'admin', '2023-03-06 09:22:43', NULL, NULL, NULL, NULL, 1, 0, '1', 1); + +INSERT INTO `sys_dict_item` (`id`, `dict_id`, `item_text`, `item_value`, `description`, `sort_order`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `is_tag_dict`, `is_read_only`, `attribute_type`, `del_flag`, `en_name`) VALUES ('1632552514273353729', '1632552252162908162', '草稿', '2', '草稿', 2, 1, 'admin', '2023-03-06 09:23:45', NULL, NULL, 1, NULL, NULL, '0', 'Draft'); +INSERT INTO `sys_dict_item` (`id`, `dict_id`, `item_text`, `item_value`, `description`, `sort_order`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `is_tag_dict`, `is_read_only`, `attribute_type`, `del_flag`, `en_name`) VALUES ('1632552455762812930', '1632552252162908162', '已发布', '1', '已发布', 1, 1, 'admin', '2023-03-06 09:23:31', NULL, NULL, 1, NULL, NULL, '0', 'Issue'); diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/authDummy/entity/AuthDummyInventoryBaseEO.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/authDummy/entity/AuthDummyInventoryBaseEO.java index f838b2828..a24a48afb 100644 --- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/authDummy/entity/AuthDummyInventoryBaseEO.java +++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/authDummy/entity/AuthDummyInventoryBaseEO.java @@ -74,6 +74,7 @@ public class AuthDummyInventoryBaseEO implements Serializable { /**状态*/ @Excel(name = "状态", width = 15) @ApiModelProperty(value = "状态") + @Dict(dicCode = "ren4_zheng4_xu1_ni3_qing1_dan1_zhuang4_tai4") private java.lang.String state; }