diff --git a/db/update/测试阶段.sql b/db/update/测试阶段.sql index 5dee43a6..3a44ec57 100644 --- a/db/update/测试阶段.sql +++ b/db/update/测试阶段.sql @@ -26,6 +26,12 @@ UPDATE sys_permission SET `name` = '标准比对-发起比对' WHERE `id` = '170 UPDATE sys_permission SET `name` = '标准比对-文档比对' WHERE `id` = '1703658626149924865'; UPDATE sys_permission SET `name` = '标准比对-比对结果' WHERE `id` = '1703940816620400642'; +-- 2024-08-12 外部标准 动力类型搜索 +UPDATE `laws_tag` SET `is_query` = 1 WHERE `id` = '1696039467907997697'; +-- 2024-08-12 外部标准 新增标准发布单位 +INSERT INTO `laws_tag` (`id`, `table_name`, `db_field_name`, `db_field_en_name`, `db_field_txt`, `order_num`, `db_field_name_old`, `db_is_key`, `db_is_null`, `db_type`, `db_length`, `db_point_length`, `db_default_val`, `dict_field`, `dict_table`, `dict_text`, `field_show_type`, `field_href`, `field_length`, `field_valid_type`, `field_must_input`, `field_extend_json`, `field_default_value`, `is_show_form_create`, `is_query`, `is_show_form`, `is_show_list`, `is_read_only`, `query_mode`, `main_table`, `main_field`, `update_by`, `update_time`, `create_time`, `create_by`, `converter`, `query_def_val`, `query_dict_text`, `query_dict_field`, `query_dict_table`, `query_show_type`, `query_config_flag`, `query_valid_type`, `query_must_input`, `sort_flag`, `show_area`, `is_show_laws_list`, `is_show_search`, `del_flag`, `is_model`, `dict_id`, `home_search_context_order`, `home_search_file_order`, `dict_field_search`, `dict_table_search`, `dict_text_search`, `usable_range`, `tree_first_href`, `import_sort`) VALUES ('1822924276857937921', 'laws_domestic_standard', 'standard_release_unit', 'Standard Release Unit', '标准发布单位', 49, 'standard_release_unit', 0, 1, 'String', 50, NULL, NULL, NULL, NULL, NULL, '9', NULL, NULL, NULL, '0', NULL, NULL, 1, 1, 1, 0, 2, NULL, NULL, NULL, NULL, NULL, '2024-08-12 17:13:11', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '1499657602378825729', NULL, 0, 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +ALTER TABLE `laws_domestic_standard` + ADD COLUMN `standard_release_unit` varchar(50) NULL DEFAULT NULL COMMENT '标准发布单位'; diff --git a/laws-modules/src/main/java/com/jero/modules/laws/standard/entity/LawsDomesticStandard.java b/laws-modules/src/main/java/com/jero/modules/laws/standard/entity/LawsDomesticStandard.java index 772bed6f..ce435033 100644 --- a/laws-modules/src/main/java/com/jero/modules/laws/standard/entity/LawsDomesticStandard.java +++ b/laws-modules/src/main/java/com/jero/modules/laws/standard/entity/LawsDomesticStandard.java @@ -248,6 +248,10 @@ public class LawsDomesticStandard implements Serializable { @Excel(name = "涉及系统/部件", width = 15) @ApiModelProperty(value = "涉及系统/部件(零部件)") private java.lang.String partName; + /**涉及系统/部件*/ + @Excel(name = "标准发布单位", width = 15) + @ApiModelProperty(value = "标准发布单位") + private java.lang.String standardReleaseUnit; /**标准号*/ private String standardNumberTemp;