yxk-20260702-党委会导入导出功能优化
This commit is contained in:
+9
-8
@@ -18,6 +18,7 @@ import org.springframework.format.annotation.DateTimeFormat;
|
||||
import org.jeecg.common.aspect.annotation.Dict;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import org.jeecg.common.util.excel.annotation.ExcelColumn;
|
||||
|
||||
/**
|
||||
* @Description: 党委会
|
||||
@@ -156,23 +157,23 @@ public class BgPartymatter implements Serializable {
|
||||
private java.lang.String urgencyLevel;
|
||||
/**是否需要所办领导审批*/
|
||||
@Excel(name = "是否需要所办领导审批", width = 15,replace = {"是_1","否_0"} )
|
||||
@ExcelColumn(name = "是否需要所办领导审批", width = 15, replace = {"是_1","否_0"})
|
||||
// @ExcelColumn(name = "是否需要所办领导审批", width = 15, replace = {"是_1","否_0"})
|
||||
@Schema(description = "是否需要所办领导审批")
|
||||
private java.lang.String isNeedAppro;
|
||||
/**所办领导*/
|
||||
@Excel(name = "所办领导", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "username")
|
||||
@ExcelColumn(name = "所办领导", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "username")
|
||||
// @ExcelColumn(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 = {"是_1","否_0"} )
|
||||
@ExcelColumn(name = "是否抄送所领导", width = 15, replace = {"是_1","否_0"})
|
||||
// @ExcelColumn(name = "是否抄送所领导", width = 15, replace = {"是_1","否_0"})
|
||||
@Schema(description = "是否抄送所领导")
|
||||
private java.lang.String isNeedSuoleader;
|
||||
/**抄送所领导*/
|
||||
@Excel(name = "抄送所领导", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "username")
|
||||
@ExcelColumn(name = "抄送所领导", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "username")
|
||||
// @ExcelColumn(name = "抄送所领导", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "username")
|
||||
@Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username")
|
||||
@Schema(description = "抄送所领导")
|
||||
private java.lang.String suoleaderid;
|
||||
@@ -183,22 +184,22 @@ public class BgPartymatter implements Serializable {
|
||||
private java.lang.String delFlag = "0";
|
||||
/**是否需要重复督办*/
|
||||
@Excel(name = "是否需要重复督办", width = 15)
|
||||
@ExcelColumn(name = "是否需要重复督办", width = 15)
|
||||
// @ExcelColumn(name = "是否需要重复督办", width = 15)
|
||||
@Schema(description = "是否需要重复督办")
|
||||
private java.lang.String isNeedInterval;
|
||||
/**重复类型*/
|
||||
@Excel(name = "重复类型", width = 15)
|
||||
@ExcelColumn(name = "重复类型", width = 15)
|
||||
// @ExcelColumn(name = "重复类型", width = 15)
|
||||
@Schema(description = "重复类型")
|
||||
private java.lang.String intervalType;
|
||||
/**重复次数*/
|
||||
@Excel(name = "重复次数", width = 15)
|
||||
@ExcelColumn(name = "重复次数", width = 15)
|
||||
// @ExcelColumn(name = "重复次数", width = 15)
|
||||
@Schema(description = "重复次数")
|
||||
private java.lang.String startCount;
|
||||
/**重复开始时间*/
|
||||
@Excel(name = "重复开始时间", width = 15, format = "yyyy-MM-dd")
|
||||
@ExcelColumn(name = "重复开始时间", width = 15, format = "yyyy-MM-dd")
|
||||
// @ExcelColumn(name = "重复开始时间", width = 15, format = "yyyy-MM-dd")
|
||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
||||
@DateTimeFormat(pattern="yyyy-MM-dd")
|
||||
@Schema(description = "重复开始时间")
|
||||
|
||||
Reference in New Issue
Block a user