From 93dc6f4db930f5568571509f3b582350d9add223 Mon Sep 17 00:00:00 2001 From: wangzhijiang <12345678> Date: Wed, 6 Jul 2022 17:01:05 +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-=E5=A2=9E=E5=8A=A0=E6=B5=81=E7=A8=8B=E7=BC=96?= =?UTF-8?q?=E5=8F=B7=EF=BC=8C=E4=BE=9B=E6=B3=95=E8=A7=84=E6=84=8F=E8=A7=81?= =?UTF-8?q?=E6=94=B6=E9=9B=86=E5=88=97=E8=A1=A8=E6=9F=A5=E7=9C=8B=E6=B5=81?= =?UTF-8?q?=E7=A8=8B=E5=9B=BE=E3=80=81=E6=B5=81=E7=A8=8B=E5=8E=86=E5=8F=B2?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jero-boot/db/蔚来标准sql/dev_third_record.sql | 3 +++ .../modules/lawsOpinionGather/entity/LawsOpinionGatherEO.java | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/jero-boot/db/蔚来标准sql/dev_third_record.sql b/jero-boot/db/蔚来标准sql/dev_third_record.sql index 0ded1e880..8ebc0bbb7 100644 --- a/jero-boot/db/蔚来标准sql/dev_third_record.sql +++ b/jero-boot/db/蔚来标准sql/dev_third_record.sql @@ -182,6 +182,9 @@ ALTER TABLE `laws_weilai`.`params_report_config` -- 法规意见收集添加字段 文档库/标准id ALTER TABLE `laws_opinion_gather` ADD COLUMN `stand_id` varchar(64) NULL COMMENT '文档库/标准id' AFTER `acti_proc_inst_id`; +-- 法规意见收集添加字段 流程编号 +ALTER TABLE `laws_opinion_gather` + ADD COLUMN `prc_num` varchar(64) NULL COMMENT '流程编号' AFTER `stand_id`; -- 上报库导出历史表 CREATE TABLE `params_report_export_history` ( 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 d21113dd0..f74919082 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 @@ -107,4 +107,8 @@ public class LawsOpinionGatherEO implements Serializable { @ApiModelProperty(value = "文档库/标准id") private String standId; + @Excel(name = "流程编号", width = 15) + @ApiModelProperty(value = "流程编号") + private String prcNum; + }