1.技术监督代码提交
This commit is contained in:
@@ -25,129 +25,89 @@ public class SupvProblemVO {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
|
||||
@Excel(name = "",width = 15)
|
||||
private String problemId;
|
||||
|
||||
@Excel(name = "",width = 15)
|
||||
@Excel(name = "计划名称",width = 40)
|
||||
private String workPlanName;
|
||||
|
||||
@Excel(name = "",width = 15)
|
||||
private String provinceId;
|
||||
|
||||
@Excel(name = "",width = 15)
|
||||
private String planId;
|
||||
|
||||
@Excel(name = "",width = 15)
|
||||
@Excel(name = "责任单位编号",width = 15)
|
||||
private String dutyOrgId;
|
||||
|
||||
@Excel(name = "",width = 15)
|
||||
@Excel(name = "责任单位名称",width = 15)
|
||||
private String dutyOrgName;
|
||||
|
||||
@Excel(name = "",width = 15)
|
||||
@Excel(name = "监测点类型",width = 15)
|
||||
private String monitorType;
|
||||
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@TableField(updateStrategy = FieldStrategy.IGNORED)
|
||||
@Excel(name = "",width = 15)
|
||||
private LocalDateTime rectificationTime;
|
||||
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "",width = 15)
|
||||
private LocalDateTime planRectificationTime;
|
||||
|
||||
/**
|
||||
* 是否发布预告警
|
||||
*/
|
||||
@Excel(name = "",width = 15)
|
||||
@Excel(name = "是否发布预告警",width = 15,replace= {"否_0", "是_1"})
|
||||
private Integer ifReleaseWarning;
|
||||
|
||||
/**
|
||||
* 问题简要描述
|
||||
*/
|
||||
@Excel(name = "",width = 15)
|
||||
private String simpleProblemDesc;
|
||||
@Excel(name = "计划整改时间",width = 15)
|
||||
private String planRectificationTime;
|
||||
|
||||
/**
|
||||
* 监督标准序号
|
||||
*/
|
||||
@Excel(name = "",width = 15)
|
||||
@Excel(name = "整改情况",width = 15,replace = {"已整改_01","未整改_02"})
|
||||
private String rectificationStatus;
|
||||
|
||||
@Excel(name = "整改时间",width = 15)
|
||||
private String rectificationTime;
|
||||
|
||||
|
||||
@Excel(name = "监督标准",width = 15)
|
||||
private String supvStandard;
|
||||
|
||||
|
||||
@Excel(name = "监督标准序号",width = 15)
|
||||
private String supvStandardSort;
|
||||
|
||||
/**
|
||||
* 问题描述
|
||||
*/
|
||||
@Excel(name = "",width = 15)
|
||||
@Excel(name = "标准出处",width = 15)
|
||||
private String supvResouce;
|
||||
|
||||
@Excel(name = "问题等级",width = 15)
|
||||
private String problemLevel;
|
||||
|
||||
|
||||
@Excel(name = "问题类型",width = 15)
|
||||
private String problemType;
|
||||
|
||||
|
||||
@Excel(name = "问题简要描述",width = 40)
|
||||
private String simpleProblemDesc;
|
||||
|
||||
|
||||
@Excel(name = "问题描述",width = 200)
|
||||
private String problemDesc;
|
||||
|
||||
/**
|
||||
* 监督标准
|
||||
* 问题发现时间
|
||||
*/
|
||||
private String supvStandard;
|
||||
|
||||
/**
|
||||
* 标准出处
|
||||
*/
|
||||
private String supvResouce;
|
||||
|
||||
/**
|
||||
* 问题等级 01 一般,02 较大
|
||||
*/
|
||||
private String problemLevel;
|
||||
@Excel(name = "问题发现时间",width = 15)
|
||||
private String discoveryTime;
|
||||
|
||||
/**
|
||||
* 定级依据
|
||||
*/
|
||||
@Excel(name = "定级依据",width = 15)
|
||||
private String problemLevelReason;
|
||||
|
||||
/**
|
||||
* 问题类型
|
||||
*/
|
||||
private String problemType;
|
||||
|
||||
/**
|
||||
* 整改方案
|
||||
*/
|
||||
@Excel(name = "整改方案",width = 50)
|
||||
private String rectificationProgramme;
|
||||
|
||||
/**
|
||||
* 整改情况01已整改,02未整改
|
||||
*/
|
||||
private String rectificationStatus;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 整改措施
|
||||
*/
|
||||
@Excel(name = "整改措施",width = 40)
|
||||
private String rectificationMeasure;
|
||||
|
||||
|
||||
/**
|
||||
* 0.以上送 1.未上送 2.取消上送
|
||||
*/
|
||||
private Integer isUploadHead;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
@Excel(name = "备注",width = 40)
|
||||
private String remark;
|
||||
|
||||
@TableField(exist = false)
|
||||
@ApiModelProperty(name = "attachmentName", value = "盖章报告")
|
||||
private String attachmentName;
|
||||
|
||||
|
||||
@TableField(exist = false)
|
||||
@ApiModelProperty(name = "attachmentNameTwo", value = "佐证材料")
|
||||
private String attachmentNameTwo;
|
||||
|
||||
/**
|
||||
* 问题发现时间
|
||||
*/
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private LocalDateTime discoveryTime;
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user