package com.ruoyi.project.tr.troubleshootList.domain;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import com.ruoyi.framework.web.domain.BaseEntity;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* 隐患排查对象 tr_troubleshoot_list
|
*
|
* @author wm
|
* @date 2020-05-05
|
*/
|
public class TroubleshootList extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** id */
|
@Excel(name = "id")
|
private Long troubleshootId;
|
|
/** 排查计划名称 */
|
@Excel(name = "排查计划名称")
|
private String troubleshootName;
|
|
/** 排查类型 */
|
@Excel(name = "排查类型")
|
private Long troubleshootType;
|
|
/** 组织单位 */
|
@Excel(name = "组织单位")
|
private Long troubleshootDept;
|
|
/** 风险单元ID */
|
@Excel(name = "风险单元ID")
|
private Long troubleshootRistId;
|
|
/** 排查人 */
|
@Excel(name = "排查人")
|
private Long troubleshootCheckUserId;
|
|
/** 被排查单位 */
|
@Excel(name = "被排查单位")
|
private Long troubleshootCheckedDeptId;
|
|
/** 排查开始日期 */
|
@Excel(name = "排查开始日期", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date troubleshootBiginTime;
|
|
/** 排查结束日期 */
|
@Excel(name = "排查结束日期", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date troubleshootEndTime;
|
|
/** 分发状态(0未分发1已经分发) */
|
@Excel(name = "分发状态(0未分发1已经分发)")
|
private Long troubleshootDistributeStatus;
|
|
/** 排查状态(0,未排查,1,已排查,2上报隐患) */
|
@Excel(name = "排查状态(0,未排查,1,已排查,2上报隐患)")
|
private Long troubleshootStatus;
|
|
/** 隐患名称 */
|
@Excel(name = "隐患名称")
|
private String troubleshootTroubleName;
|
|
/** 隐患描述 */
|
@Excel(name = "隐患描述")
|
private String troubleshootTroubleDescription;
|
|
/** 隐患级别(1.一般隐患,2.重大隐患) */
|
@Excel(name = "隐患级别(1.一般隐患,2.重大隐患)")
|
private Long troubleshootTroubleLevel;
|
|
/** 隐患类别 */
|
@Excel(name = "隐患类别")
|
private Long troubleshootTroubleType;
|
|
/** 隐患责任部门 */
|
@Excel(name = "隐患责任部门")
|
private Long troubleshootTroubleDept;
|
|
/** 隐患地点 */
|
@Excel(name = "隐患地点")
|
private String troubleshootTroubleAddress;
|
|
/** 排查时间 */
|
@Excel(name = "排查时间", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date troubleshootTime;
|
|
/** 隐患整改前照片 */
|
@Excel(name = "隐患整改前照片")
|
private String troubleshootBeforeChangeImageUrl;
|
|
/** 核查人 */
|
@Excel(name = "核查人")
|
private Long troubleshootReviewUserId;
|
|
/** 整改人 */
|
@Excel(name = "整改人")
|
private Long troubleshootRectificationUserId;
|
|
/** 隐患类型(1,风险单元隐患,2.上报隐患) */
|
@Excel(name = "隐患类型(1,风险单元隐患,2.上报隐患)")
|
private Long hiddenTroubleType;
|
|
/** 隐患状态,(0,未填写,1,正常,2,有隐患) */
|
@Excel(name = "隐患状态,(0,未填写,1,正常,2,有隐患)")
|
private Long hiddenTroubleStatus;
|
|
/** 整改措施 */
|
@Excel(name = "整改措施")
|
private String troubleshootRectificationMeasures;
|
|
/** 整改情况 */
|
@Excel(name = "整改情况")
|
private String troubleshootRectificationHappening;
|
|
/** 整改资金 */
|
@Excel(name = "整改资金")
|
private BigDecimal troubleshootRectificationMoney;
|
|
/** 整改完成时间 */
|
@Excel(name = "整改完成时间", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date troubleshootRectificationCompleteTime;
|
|
/** 验收负责人 */
|
@Excel(name = "验收负责人")
|
private Long troubleshootAcceptanceUserId;
|
|
/** 整改后照片 */
|
@Excel(name = "整改后照片")
|
private String troubleshootAfterChangeImageUrl;
|
|
/** 验收意见 */
|
@Excel(name = "验收意见")
|
private String troubleshootAcceptanceOpinion;
|
|
/** 验收结果(1未审核,2审核通过,3,审核不通过) */
|
@Excel(name = "验收结果(1未审核,2审核通过,3,审核不通过)")
|
private Long troubleshootAcceptanceResult;
|
|
/** 验收文件上传 */
|
@Excel(name = "验收文件上传")
|
private String troubleshootAcceptanceImageUrl;
|
|
/** 排查进度(1计划阶段,2排查阶段,3核查阶段,4整改阶段,5验收阶段) */
|
@Excel(name = "排查进度(1计划阶段,2排查阶段,3核查阶段,4整改阶段,5验收阶段)")
|
private Long troubleshootProgress;
|
|
public void setTroubleshootId(Long troubleshootId)
|
{
|
this.troubleshootId = troubleshootId;
|
}
|
|
public Long getTroubleshootId()
|
{
|
return troubleshootId;
|
}
|
public void setTroubleshootName(String troubleshootName)
|
{
|
this.troubleshootName = troubleshootName;
|
}
|
|
public String getTroubleshootName()
|
{
|
return troubleshootName;
|
}
|
public void setTroubleshootType(Long troubleshootType)
|
{
|
this.troubleshootType = troubleshootType;
|
}
|
|
public Long getTroubleshootType()
|
{
|
return troubleshootType;
|
}
|
public void setTroubleshootDept(Long troubleshootDept)
|
{
|
this.troubleshootDept = troubleshootDept;
|
}
|
|
public Long getTroubleshootDept()
|
{
|
return troubleshootDept;
|
}
|
public void setTroubleshootRistId(Long troubleshootRistId)
|
{
|
this.troubleshootRistId = troubleshootRistId;
|
}
|
|
public Long getTroubleshootRistId()
|
{
|
return troubleshootRistId;
|
}
|
public void setTroubleshootCheckUserId(Long troubleshootCheckUserId)
|
{
|
this.troubleshootCheckUserId = troubleshootCheckUserId;
|
}
|
|
public Long getTroubleshootCheckUserId()
|
{
|
return troubleshootCheckUserId;
|
}
|
public void setTroubleshootCheckedDeptId(Long troubleshootCheckedDeptId)
|
{
|
this.troubleshootCheckedDeptId = troubleshootCheckedDeptId;
|
}
|
|
public Long getTroubleshootCheckedDeptId()
|
{
|
return troubleshootCheckedDeptId;
|
}
|
public void setTroubleshootBiginTime(Date troubleshootBiginTime)
|
{
|
this.troubleshootBiginTime = troubleshootBiginTime;
|
}
|
|
public Date getTroubleshootBiginTime()
|
{
|
return troubleshootBiginTime;
|
}
|
public void setTroubleshootEndTime(Date troubleshootEndTime)
|
{
|
this.troubleshootEndTime = troubleshootEndTime;
|
}
|
|
public Date getTroubleshootEndTime()
|
{
|
return troubleshootEndTime;
|
}
|
public void setTroubleshootDistributeStatus(Long troubleshootDistributeStatus)
|
{
|
this.troubleshootDistributeStatus = troubleshootDistributeStatus;
|
}
|
|
public Long getTroubleshootDistributeStatus()
|
{
|
return troubleshootDistributeStatus;
|
}
|
public void setTroubleshootStatus(Long troubleshootStatus)
|
{
|
this.troubleshootStatus = troubleshootStatus;
|
}
|
|
public Long getTroubleshootStatus()
|
{
|
return troubleshootStatus;
|
}
|
public void setTroubleshootTroubleName(String troubleshootTroubleName)
|
{
|
this.troubleshootTroubleName = troubleshootTroubleName;
|
}
|
|
public String getTroubleshootTroubleName()
|
{
|
return troubleshootTroubleName;
|
}
|
public void setTroubleshootTroubleDescription(String troubleshootTroubleDescription)
|
{
|
this.troubleshootTroubleDescription = troubleshootTroubleDescription;
|
}
|
|
public String getTroubleshootTroubleDescription()
|
{
|
return troubleshootTroubleDescription;
|
}
|
public void setTroubleshootTroubleLevel(Long troubleshootTroubleLevel)
|
{
|
this.troubleshootTroubleLevel = troubleshootTroubleLevel;
|
}
|
|
public Long getTroubleshootTroubleLevel()
|
{
|
return troubleshootTroubleLevel;
|
}
|
public void setTroubleshootTroubleType(Long troubleshootTroubleType)
|
{
|
this.troubleshootTroubleType = troubleshootTroubleType;
|
}
|
|
public Long getTroubleshootTroubleType()
|
{
|
return troubleshootTroubleType;
|
}
|
public void setTroubleshootTroubleDept(Long troubleshootTroubleDept)
|
{
|
this.troubleshootTroubleDept = troubleshootTroubleDept;
|
}
|
|
public Long getTroubleshootTroubleDept()
|
{
|
return troubleshootTroubleDept;
|
}
|
public void setTroubleshootTroubleAddress(String troubleshootTroubleAddress)
|
{
|
this.troubleshootTroubleAddress = troubleshootTroubleAddress;
|
}
|
|
public String getTroubleshootTroubleAddress()
|
{
|
return troubleshootTroubleAddress;
|
}
|
public void setTroubleshootTime(Date troubleshootTime)
|
{
|
this.troubleshootTime = troubleshootTime;
|
}
|
|
public Date getTroubleshootTime()
|
{
|
return troubleshootTime;
|
}
|
public void setTroubleshootBeforeChangeImageUrl(String troubleshootBeforeChangeImageUrl)
|
{
|
this.troubleshootBeforeChangeImageUrl = troubleshootBeforeChangeImageUrl;
|
}
|
|
public String getTroubleshootBeforeChangeImageUrl()
|
{
|
return troubleshootBeforeChangeImageUrl;
|
}
|
public void setTroubleshootReviewUserId(Long troubleshootReviewUserId)
|
{
|
this.troubleshootReviewUserId = troubleshootReviewUserId;
|
}
|
|
public Long getTroubleshootReviewUserId()
|
{
|
return troubleshootReviewUserId;
|
}
|
public void setTroubleshootRectificationUserId(Long troubleshootRectificationUserId)
|
{
|
this.troubleshootRectificationUserId = troubleshootRectificationUserId;
|
}
|
|
public Long getTroubleshootRectificationUserId()
|
{
|
return troubleshootRectificationUserId;
|
}
|
public void setHiddenTroubleType(Long hiddenTroubleType)
|
{
|
this.hiddenTroubleType = hiddenTroubleType;
|
}
|
|
public Long getHiddenTroubleType()
|
{
|
return hiddenTroubleType;
|
}
|
public void setHiddenTroubleStatus(Long hiddenTroubleStatus)
|
{
|
this.hiddenTroubleStatus = hiddenTroubleStatus;
|
}
|
|
public Long getHiddenTroubleStatus()
|
{
|
return hiddenTroubleStatus;
|
}
|
public void setTroubleshootRectificationMeasures(String troubleshootRectificationMeasures)
|
{
|
this.troubleshootRectificationMeasures = troubleshootRectificationMeasures;
|
}
|
|
public String getTroubleshootRectificationMeasures()
|
{
|
return troubleshootRectificationMeasures;
|
}
|
public void setTroubleshootRectificationHappening(String troubleshootRectificationHappening)
|
{
|
this.troubleshootRectificationHappening = troubleshootRectificationHappening;
|
}
|
|
public String getTroubleshootRectificationHappening()
|
{
|
return troubleshootRectificationHappening;
|
}
|
public void setTroubleshootRectificationMoney(BigDecimal troubleshootRectificationMoney)
|
{
|
this.troubleshootRectificationMoney = troubleshootRectificationMoney;
|
}
|
|
public BigDecimal getTroubleshootRectificationMoney()
|
{
|
return troubleshootRectificationMoney;
|
}
|
public void setTroubleshootRectificationCompleteTime(Date troubleshootRectificationCompleteTime)
|
{
|
this.troubleshootRectificationCompleteTime = troubleshootRectificationCompleteTime;
|
}
|
|
public Date getTroubleshootRectificationCompleteTime()
|
{
|
return troubleshootRectificationCompleteTime;
|
}
|
public void setTroubleshootAcceptanceUserId(Long troubleshootAcceptanceUserId)
|
{
|
this.troubleshootAcceptanceUserId = troubleshootAcceptanceUserId;
|
}
|
|
public Long getTroubleshootAcceptanceUserId()
|
{
|
return troubleshootAcceptanceUserId;
|
}
|
public void setTroubleshootAfterChangeImageUrl(String troubleshootAfterChangeImageUrl)
|
{
|
this.troubleshootAfterChangeImageUrl = troubleshootAfterChangeImageUrl;
|
}
|
|
public String getTroubleshootAfterChangeImageUrl()
|
{
|
return troubleshootAfterChangeImageUrl;
|
}
|
public void setTroubleshootAcceptanceOpinion(String troubleshootAcceptanceOpinion)
|
{
|
this.troubleshootAcceptanceOpinion = troubleshootAcceptanceOpinion;
|
}
|
|
public String getTroubleshootAcceptanceOpinion()
|
{
|
return troubleshootAcceptanceOpinion;
|
}
|
public void setTroubleshootAcceptanceResult(Long troubleshootAcceptanceResult)
|
{
|
this.troubleshootAcceptanceResult = troubleshootAcceptanceResult;
|
}
|
|
public Long getTroubleshootAcceptanceResult()
|
{
|
return troubleshootAcceptanceResult;
|
}
|
public void setTroubleshootAcceptanceImageUrl(String troubleshootAcceptanceImageUrl)
|
{
|
this.troubleshootAcceptanceImageUrl = troubleshootAcceptanceImageUrl;
|
}
|
|
public String getTroubleshootAcceptanceImageUrl()
|
{
|
return troubleshootAcceptanceImageUrl;
|
}
|
public void setTroubleshootProgress(Long troubleshootProgress)
|
{
|
this.troubleshootProgress = troubleshootProgress;
|
}
|
|
public Long getTroubleshootProgress()
|
{
|
return troubleshootProgress;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("troubleshootId", getTroubleshootId())
|
.append("createBy", getCreateBy())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateTime", getUpdateTime())
|
.append("remark", getRemark())
|
.append("troubleshootName", getTroubleshootName())
|
.append("troubleshootType", getTroubleshootType())
|
.append("troubleshootDept", getTroubleshootDept())
|
.append("troubleshootRistId", getTroubleshootRistId())
|
.append("troubleshootCheckUserId", getTroubleshootCheckUserId())
|
.append("troubleshootCheckedDeptId", getTroubleshootCheckedDeptId())
|
.append("troubleshootBiginTime", getTroubleshootBiginTime())
|
.append("troubleshootEndTime", getTroubleshootEndTime())
|
.append("troubleshootDistributeStatus", getTroubleshootDistributeStatus())
|
.append("troubleshootStatus", getTroubleshootStatus())
|
.append("troubleshootTroubleName", getTroubleshootTroubleName())
|
.append("troubleshootTroubleDescription", getTroubleshootTroubleDescription())
|
.append("troubleshootTroubleLevel", getTroubleshootTroubleLevel())
|
.append("troubleshootTroubleType", getTroubleshootTroubleType())
|
.append("troubleshootTroubleDept", getTroubleshootTroubleDept())
|
.append("troubleshootTroubleAddress", getTroubleshootTroubleAddress())
|
.append("troubleshootTime", getTroubleshootTime())
|
.append("troubleshootBeforeChangeImageUrl", getTroubleshootBeforeChangeImageUrl())
|
.append("troubleshootReviewUserId", getTroubleshootReviewUserId())
|
.append("troubleshootRectificationUserId", getTroubleshootRectificationUserId())
|
.append("hiddenTroubleType", getHiddenTroubleType())
|
.append("hiddenTroubleStatus", getHiddenTroubleStatus())
|
.append("troubleshootRectificationMeasures", getTroubleshootRectificationMeasures())
|
.append("troubleshootRectificationHappening", getTroubleshootRectificationHappening())
|
.append("troubleshootRectificationMoney", getTroubleshootRectificationMoney())
|
.append("troubleshootRectificationCompleteTime", getTroubleshootRectificationCompleteTime())
|
.append("troubleshootAcceptanceUserId", getTroubleshootAcceptanceUserId())
|
.append("troubleshootAfterChangeImageUrl", getTroubleshootAfterChangeImageUrl())
|
.append("troubleshootAcceptanceOpinion", getTroubleshootAcceptanceOpinion())
|
.append("troubleshootAcceptanceResult", getTroubleshootAcceptanceResult())
|
.append("troubleshootAcceptanceImageUrl", getTroubleshootAcceptanceImageUrl())
|
.append("troubleshootProgress", getTroubleshootProgress())
|
.toString();
|
}
|
}
|