package com.ruoyi.project.tr.hiddenDangerCheck.domain;
|
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import com.ruoyi.framework.web.domain.BaseEntity;
|
|
import java.util.Date;
|
|
/**
|
* 定时隐患排查导出
|
*/
|
public class HiddenDangerCheckByScheduleExport extends BaseEntity {
|
//排查类型(1基础清单排查 2选择风险单元清单排查)
|
private String checkType;
|
|
@Excel(name = "排查方式")
|
private String checkTypeName;
|
|
private String riskName;
|
/**
|
* 风险单元名称
|
*/
|
@Excel(name = "基础清单名称")
|
private String basicRiskNameLabel;
|
|
|
/**
|
* 风险单元名称
|
*/
|
@Excel(name = "风险单元")
|
private String riskNameLabel;
|
|
|
/**
|
* 风险单元类型(1设备设施清单 2作业活动清单 3工艺节点清单)
|
*/
|
@Excel(name = "风险单元类型")
|
private String riskType;
|
|
|
/**
|
* 排查周期
|
*/
|
private Long troubleshootTypeCycleNum;
|
|
/**
|
* 隐患排查周期类型(1小时,2日,3周,4月,5年)
|
*/
|
private Long troubleshootTypeCycleType;
|
|
|
@Excel(name = "排查周期")
|
private String troubleshootCycleInfo;
|
|
|
/**
|
* 隐患责任部门名称
|
*/
|
@Excel(name = "隐患责任部门")
|
private String dangerDeptName;
|
|
|
/**
|
* 隐患地点名称
|
*/
|
@Excel(name = "隐患地点")
|
private String dangerPlaceName;
|
|
|
/**
|
* 排查人
|
*/
|
@Excel(name = "排查人")
|
private String scheduleCheckUserName;
|
|
|
/**
|
* 创建时间
|
*/
|
@Excel(name = "创建时间", dateFormat = "yyyy-MM-dd HH:mm:ss")
|
private Date createTime;
|
|
|
@Excel(name = "状态")
|
private String scheduleCheckStatus;
|
|
|
public String getCheckType() {
|
return checkType;
|
}
|
|
public void setCheckType(String checkType) {
|
this.checkType = checkType;
|
}
|
|
public String getCheckTypeName() {
|
return checkTypeName;
|
}
|
|
public void setCheckTypeName(String checkTypeName) {
|
this.checkTypeName = checkTypeName;
|
}
|
|
public String getRiskName() {
|
return riskName;
|
}
|
|
public void setRiskName(String riskName) {
|
this.riskName = riskName;
|
}
|
|
public String getBasicRiskNameLabel() {
|
return basicRiskNameLabel;
|
}
|
|
public void setBasicRiskNameLabel(String basicRiskNameLabel) {
|
this.basicRiskNameLabel = basicRiskNameLabel;
|
}
|
|
public String getRiskNameLabel() {
|
return riskNameLabel;
|
}
|
|
public void setRiskNameLabel(String riskNameLabel) {
|
this.riskNameLabel = riskNameLabel;
|
}
|
|
public String getRiskType() {
|
return riskType;
|
}
|
|
public void setRiskType(String riskType) {
|
this.riskType = riskType;
|
}
|
|
public Long getTroubleshootTypeCycleNum() {
|
return troubleshootTypeCycleNum;
|
}
|
|
public void setTroubleshootTypeCycleNum(Long troubleshootTypeCycleNum) {
|
this.troubleshootTypeCycleNum = troubleshootTypeCycleNum;
|
}
|
|
public Long getTroubleshootTypeCycleType() {
|
return troubleshootTypeCycleType;
|
}
|
|
public void setTroubleshootTypeCycleType(Long troubleshootTypeCycleType) {
|
this.troubleshootTypeCycleType = troubleshootTypeCycleType;
|
}
|
|
public String getTroubleshootCycleInfo() {
|
return troubleshootCycleInfo;
|
}
|
|
public void setTroubleshootCycleInfo(String troubleshootCycleInfo) {
|
this.troubleshootCycleInfo = troubleshootCycleInfo;
|
}
|
|
public String getDangerDeptName() {
|
return dangerDeptName;
|
}
|
|
public void setDangerDeptName(String dangerDeptName) {
|
this.dangerDeptName = dangerDeptName;
|
}
|
|
public String getDangerPlaceName() {
|
return dangerPlaceName;
|
}
|
|
public void setDangerPlaceName(String dangerPlaceName) {
|
this.dangerPlaceName = dangerPlaceName;
|
}
|
|
public String getScheduleCheckUserName() {
|
return scheduleCheckUserName;
|
}
|
|
public void setScheduleCheckUserName(String scheduleCheckUserName) {
|
this.scheduleCheckUserName = scheduleCheckUserName;
|
}
|
|
@Override
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
@Override
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getScheduleCheckStatus() {
|
return scheduleCheckStatus;
|
}
|
|
public void setScheduleCheckStatus(String scheduleCheckStatus) {
|
this.scheduleCheckStatus = scheduleCheckStatus;
|
}
|
}
|