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; + }