yxk-20260519-党委会添加抄告单编号、是否为三重一大决策两个字段
This commit is contained in:
+14
-4
@@ -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"} )
|
||||
|
||||
+1
@@ -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*/
|
||||
|
||||
Reference in New Issue
Block a user