From 733b19ad916c70f4e09adee93278bb5e7f05bbba Mon Sep 17 00:00:00 2001 From: ye1023 <12588209+ye1023@user.noreply.gitee.com> Date: Tue, 19 May 2026 16:14:18 +0800 Subject: [PATCH] =?UTF-8?q?yxk-20260519-=E5=85=9A=E5=A7=94=E4=BC=9A?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=8A=84=E5=91=8A=E5=8D=95=E7=BC=96=E5=8F=B7?= =?UTF-8?q?=E3=80=81=E6=98=AF=E5=90=A6=E4=B8=BA=E4=B8=89=E9=87=8D=E4=B8=80?= =?UTF-8?q?=E5=A4=A7=E5=86=B3=E7=AD=96=E4=B8=A4=E4=B8=AA=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../bgpartymatter/entity/BgPartymatter.java | 18 ++++++++++++++---- .../entity/BgPartymatterFeedback.java | 1 + 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/jeecg-module-supervision/src/main/java/org/jeecg/modules/demo/bgpartymatter/entity/BgPartymatter.java b/jeecg-module-supervision/src/main/java/org/jeecg/modules/demo/bgpartymatter/entity/BgPartymatter.java index 8853124..50db0f6 100644 --- a/jeecg-module-supervision/src/main/java/org/jeecg/modules/demo/bgpartymatter/entity/BgPartymatter.java +++ b/jeecg-module-supervision/src/main/java/org/jeecg/modules/demo/bgpartymatter/entity/BgPartymatter.java @@ -4,6 +4,7 @@ import java.io.Serializable; import java.io.UnsupportedEncodingException; import java.util.Date; import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableLogic; @@ -83,6 +84,15 @@ public class BgPartymatter implements Serializable { @Excel(name = "事项目录编码", width = 15) @Schema(description = "事项目录编码") private java.lang.String matterCode; + /**抄告单编号*/ + @Excel(name = "抄告单编号", width = 15) + @Schema(description = "抄告单编号") + private java.lang.String noticeNumber; + /**是否为三重一大决策*/ + @Excel(name = "是否为三重一大决策", width = 15, dicCode = "yn") + @Dict(dicCode = "yn") + @Schema(description = "是否为三重一大决策") + private java.lang.String isImportant; /**主办部门*/ @Excel(name = "主办部门", width = 15, dictTable = "sys_depart", dicText = "depart_name", dicCode = "id") @Dict(dictTable = "sys_depart", dicText = "depart_name", dicCode = "id") @@ -112,10 +122,10 @@ public class BgPartymatter implements Serializable { @DateTimeFormat(pattern="yyyy-MM-dd") @Schema(description = "要求完成日期") private java.util.Date deadline; - /**紧急程度*/ - @Excel(name = "紧急程度", width = 15) - @Dict(dicCode = "urgency_level") - @Schema(description = "紧急程度") + /**是否急件*/ + @Excel(name = "是否急件", width = 15, dicCode = "yn") + @Dict(dicCode = "yn") + @Schema(description = "是否急件") private java.lang.String urgencyLevel; /**是否需要所办领导审批*/ @Excel(name = "是否需要所办领导审批", width = 15,replace = {"是_1","否_0"} ) diff --git a/jeecg-module-supervision/src/main/java/org/jeecg/modules/demo/bgpartymatter/entity/BgPartymatterFeedback.java b/jeecg-module-supervision/src/main/java/org/jeecg/modules/demo/bgpartymatter/entity/BgPartymatterFeedback.java index 24af22b..f791fff 100644 --- a/jeecg-module-supervision/src/main/java/org/jeecg/modules/demo/bgpartymatter/entity/BgPartymatterFeedback.java +++ b/jeecg-module-supervision/src/main/java/org/jeecg/modules/demo/bgpartymatter/entity/BgPartymatterFeedback.java @@ -80,6 +80,7 @@ public class BgPartymatterFeedback implements Serializable { private java.util.Date actualTime; /**完成状态*/ @Excel(name = "完成状态", width = 15) + @Dict(dicCode = "feedback_status") @Schema(description = "完成状态") private java.lang.String bpmStatus; /**流程实例id*/