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 960919b..19883c9 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 @@ -111,11 +111,16 @@ public class BgPartymatter implements Serializable { @Schema(description = "紧急程度") private java.lang.String urgencyLevel; /**是否需要所办领导审批*/ - @Excel(name = "是否需要所办领导审批", width = 15,replace = {"是_Y","否_N"} ) + @Excel(name = "是否需要所办领导审批", width = 15,replace = {"是_1","否_0"} ) @Schema(description = "是否需要所办领导审批") private java.lang.String isNeedAppro; + /**所办领导*/ + @Excel(name = "所办领导", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "username") + @Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username") + @Schema(description = "所办领导") + private java.lang.String supDeptleaderid; /**是否抄送所领导*/ - @Excel(name = "是否抄送所领导", width = 15,replace = {"是_Y","否_N"} ) + @Excel(name = "是否抄送所领导", width = 15,replace = {"是_1","否_0"} ) @Schema(description = "是否抄送所领导") private java.lang.String isNeedSuoleader; /**抄送所领导*/