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 HiddenDangerCheckByPlanExecuteExport 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; /** * 排查计划名称 */ @Excel(name = "排查计划名称") private String planName; /** * 排查类型 */ @Excel(name = "排查类型") private String troubleshootTypeName; /** * 排查周期 */ private Long troubleshootTypeCycleNum; /** * 隐患排查周期类型(1小时,2日,3周,4月,5年) */ private Long troubleshootTypeCycleType; @Excel(name = "排查周期") private String troubleshootCycleInfo; /** * 排查人 */ @Excel(name = "排查人") private String checkUserName; /** * 排查开始日期 */ @Excel(name = "排查开始日期") private String checkBeginTime; /** * 排查结束日期 */ @Excel(name = "排查结束日期") private String checkEndTime; /** * 创建时间 */ @Excel(name = "创建时间", dateFormat = "yyyy-MM-dd HH:mm:ss") private Date createTime; @Excel(name = "状态") private String planExecuteStatus; 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 getTroubleshootCycleInfo() { return troubleshootCycleInfo; } public void setTroubleshootCycleInfo(String troubleshootCycleInfo) { this.troubleshootCycleInfo = troubleshootCycleInfo; } public String getCheckTypeName() { return checkTypeName; } public void setCheckTypeName(String checkTypeName) { this.checkTypeName = checkTypeName; } public String getCheckType() { return checkType; } public void setCheckType(String checkType) { this.checkType = checkType; } public String getRiskName() { return riskName; } public void setRiskName(String riskName) { this.riskName = riskName; } public String getRiskType() { return riskType; } public void setRiskType(String riskType) { this.riskType = riskType; } public String getPlanName() { return planName; } public void setPlanName(String planName) { this.planName = planName; } public String getTroubleshootTypeName() { return troubleshootTypeName; } public void setTroubleshootTypeName(String troubleshootTypeName) { this.troubleshootTypeName = troubleshootTypeName; } 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 getCheckUserName() { return checkUserName; } public void setCheckUserName(String checkUserName) { this.checkUserName = checkUserName; } public String getCheckBeginTime() { return checkBeginTime; } public void setCheckBeginTime(String checkBeginTime) { this.checkBeginTime = checkBeginTime; } public String getCheckEndTime() { return checkEndTime; } public void setCheckEndTime(String checkEndTime) { this.checkEndTime = checkEndTime; } @Override public Date getCreateTime() { return createTime; } @Override public void setCreateTime(Date createTime) { this.createTime = createTime; } public String getPlanExecuteStatus() { return planExecuteStatus; } public void setPlanExecuteStatus(String planExecuteStatus) { this.planExecuteStatus = planExecuteStatus; } }