From b8ca777f585531525f1c86e98cca430c940e4be0 Mon Sep 17 00:00:00 2001 From: wangzhijiang <12345678> Date: Wed, 6 Jul 2022 14:26:32 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B3=95=E8=A7=84=E6=84=8F=E8=A7=81=E6=94=B6?= =?UTF-8?q?=E9=9B=86=E6=B7=BB=E5=8A=A0=E5=AD=97=E6=AE=B5=20=20=E6=96=87?= =?UTF-8?q?=E6=A1=A3=E5=BA=93/=E6=A0=87=E5=87=86id?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jero-boot/db/蔚来标准sql/dev_third_record.sql | 5 +++++ .../lawsOpinionGather/entity/LawsOpinionGatherEO.java | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/jero-boot/db/蔚来标准sql/dev_third_record.sql b/jero-boot/db/蔚来标准sql/dev_third_record.sql index b61270de9..fa6abf466 100644 --- a/jero-boot/db/蔚来标准sql/dev_third_record.sql +++ b/jero-boot/db/蔚来标准sql/dev_third_record.sql @@ -177,3 +177,8 @@ SET FOREIGN_KEY_CHECKS = 1; -- 上报库配置表添加字段 ALTER TABLE `laws_weilai`.`params_report_config` ADD COLUMN `old_params_config_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '收集库参数配置id' AFTER `display_seq`; + + +-- 法规意见收集添加字段 文档库/标准id +ALTER TABLE `laws_opinion_gather` + ADD COLUMN `stand_id` varchar(64) NULL COMMENT '文档库/标准id' AFTER `acti_proc_inst_id`; diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/lawsOpinionGather/entity/LawsOpinionGatherEO.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/lawsOpinionGather/entity/LawsOpinionGatherEO.java index 54bdb668d..d21113dd0 100644 --- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/lawsOpinionGather/entity/LawsOpinionGatherEO.java +++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/lawsOpinionGather/entity/LawsOpinionGatherEO.java @@ -103,4 +103,8 @@ public class LawsOpinionGatherEO implements Serializable { @ApiModelProperty(value = "流程实例id") private String actiProcInstId; + @Excel(name = "文档库/标准id", width = 15) + @ApiModelProperty(value = "文档库/标准id") + private String standId; + }