package com.ruoyi.project.tr.hiddenDangerCheckPoint.domain;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel.ColumnType;
|
import com.ruoyi.framework.web.domain.BaseEntity;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* 隐患排查台账导出对象
|
*
|
*/
|
@Data
|
public class HiddenDangerCheckPointExport extends BaseEntity
|
{
|
|
@Excel(name = "序号")
|
private String index;
|
|
@Excel(name = "隐患事实")
|
private String dangerDescription;
|
|
@Excel(name = "检查人员")
|
private String checkPerson;
|
|
@Excel(name = "排查日期")
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
private String findTime;
|
|
@Excel(name = "隐患分级")
|
private String dangerLevel;
|
|
@Excel(name = "整改期限")
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
private String rectifyDeadlineTime;
|
|
@Excel(name = "责任人")
|
private String judgeUserName;
|
|
@Excel(name = "整改措施")
|
private String rectifyMeasure;
|
|
@Excel(name = "完成日期")
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
private String rectifyCompleteTime;
|
|
@Excel(name = "验证人")
|
private String acceptUserName;
|
|
@Excel(name = "验证时间")
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
private String acceptCreateTime;
|
|
@Excel(name = "完成情况")
|
private String acceptOpinion;
|
|
@Excel(name = "上报时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private String registerCreateTime;
|
|
@Excel(name = "判定人")
|
private String judgeUserName1;
|
|
@Excel(name = "核查人")
|
private String examineUserName;
|
|
@Excel(name = "登记人员")
|
private String registerUserName;
|
|
@Excel(name = "登记时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private String registerCreateTime1;
|
|
|
|
|
//
|
// @Excel(name = "排查方式")
|
// private String checkType;
|
//
|
//
|
// @Excel(name = "基础清单名称")
|
// private String baseRiskName;
|
//
|
// @Excel(name = "风险单元")
|
// private String riskPointName;
|
//
|
//
|
// @Excel(name = "风险单元类型")
|
// private String riskPointType;
|
//
|
//
|
// @Excel(name = "隐患名称")
|
// private String dangerName;
|
|
// @Excel(name = "隐患图片", cellType = ColumnType.PICTURE)
|
// private String preRectifyPhoto;
|
//
|
// @Excel(name = "隐患类别")
|
// private String troubleTypeName;
|
//
|
// @Excel(name = "隐患级别")
|
// private String dangerLevel;
|
//
|
// @Excel(name = "隐患来源")
|
// private String dangerSources;
|
//
|
// @Excel(name = "隐患责任部门")
|
// private String dangerDep;
|
//
|
// @Excel(name = "整改状态")
|
// private String rectifyStatus;
|
//
|
|
//
|
// @Excel(name = "隐患核查时间")
|
// @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
// private String examineCreateTime;
|
//
|
// @Excel(name = "核查人员")
|
// private String examineUserName;
|
//
|
// @Excel(name = "隐患整改时间")
|
// @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
// private String rectifyCreateTime;
|
//
|
// @Excel(name = "整改人员")
|
// private String rectifyUserName;
|
//
|
// @Excel(name = "整改措施")
|
// private String rectifyMeasure;
|
//
|
//// @Excel(name = "隐患整改后照片", cellType = ColumnType.PICTURE)
|
// private String postRectifyPhoto;
|
|
|
|
}
|