package com.ruoyi.project.tr.HiddenDangerCheckJob.domain;
|
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import com.ruoyi.framework.web.domain.BaseEntity;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
import java.util.Date;
|
|
/**
|
* 定时任务执行隐患排查对象 tr_hidden_danger_check_job_execute
|
*
|
*
|
* @date 2020-05-18
|
*/
|
public class HiddenDangerCheckJobLog extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 任务日志ID(隐患排查) */
|
private Long checkJobLogId;
|
|
/** 计划创建人ID */
|
@Excel(name = "计划创建人ID")
|
private Long planCreateUserId;
|
|
/** 计划名称 */
|
@Excel(name = "计划名称")
|
private String planName;
|
|
/** 排查类型id */
|
@Excel(name = "排查类型id")
|
private Long troubleshootTypeId;
|
|
/** 排查类型名称 */
|
@Excel(name = "排查类型名称")
|
private String troubleshootTypeName;
|
|
/** 组织单位ID */
|
@Excel(name = "组织单位ID")
|
private Long organizationDeptId;
|
|
/** 组织单位名称 */
|
@Excel(name = "组织单位名称")
|
private String organizationDeptName;
|
|
/** 风险单元类型(1设备设施清单 2作业活动清单 3工艺节点清单) */
|
@Excel(name = "风险单元类型", readConverterExp = "1=设备设施清单,2=作业活动清单,3=工艺节点清单")
|
private String riskType;
|
|
/** 风险单元ID */
|
@Excel(name = "风险单元ID")
|
private Long riskId;
|
|
/** 风险单元名称 */
|
@Excel(name = "风险单元名称")
|
private String riskName;
|
|
/** 排查人ID */
|
@Excel(name = "排查人ID")
|
private Long checkUserId;
|
|
/** 排查人名称 */
|
@Excel(name = "排查人名称")
|
private String checkUserName;
|
|
/** 被检查单位ID */
|
@Excel(name = "被检查单位ID")
|
private Long beCheckedDeptId;
|
|
/** 被检查单位名称 */
|
@Excel(name = "被检查单位名称")
|
private String beCheckedDeptName;
|
|
/** 排查开始日期 */
|
@Excel(name = "排查开始日期")
|
private String checkBeginTime;
|
|
/** 排查结束日期 */
|
@Excel(name = "排查结束日期")
|
private String checkEndTime;
|
|
/** 隐患排查计划制定(0未开始 1已派发 2进行中 3已完成) */
|
@Excel(name = "隐患排查计划制定", readConverterExp = "0=未开始,1=已派发,2=进行中,3=已完成")
|
private String planFormulateStatus;
|
|
/** 隐患排查计划执行(0未开始 1进行中 2已完成) */
|
@Excel(name = "隐患排查计划执行", readConverterExp = "0=未开始,1=进行中,2=已完成")
|
private String planExecuteStatus;
|
|
/** 排查状态(0待排查 1已排查) */
|
@Excel(name = "排查状态", readConverterExp = "0=待排查,1=已排查")
|
private String checkStatus;
|
|
/** 是否为隐患(0为正常 1为隐患) */
|
@Excel(name = "是否为隐患", readConverterExp = "0=为正常,1=为隐患")
|
private String whetherDanger;
|
|
/** 隐患名称 */
|
@Excel(name = "隐患名称")
|
private String dangerName;
|
|
/** 隐患描述 */
|
@Excel(name = "隐患描述")
|
private String dangerDescription;
|
|
/** 隐患级别(0一般隐患 1重大隐患) */
|
@Excel(name = "隐患级别(0一般隐患 1重大隐患)")
|
private String dangerLevel;
|
|
/** 隐患类别ID */
|
@Excel(name = "隐患类别ID")
|
private Long troubleTypeId;
|
|
/** 隐患类别名称 */
|
@Excel(name = "隐患类别名称")
|
private String troubleTypeName;
|
|
|
/** 隐患排查周期数 */
|
@Excel(name = "隐患排查周期数")
|
private Long troubleshootTypeCycleNum;
|
|
/** 隐患排查周期类型(1小时,2日,3周,4月,5年) */
|
@Excel(name = "隐患排查周期类型(1小时,2日,3周,4月,5年)")
|
private Long troubleshootTypeCycleType;
|
|
|
/** 隐患责任部门ID */
|
@Excel(name = "隐患责任部门ID")
|
private Long dangerDeptId;
|
|
/** 隐患责任部门名称 */
|
@Excel(name = "隐患责任部门名称")
|
private String dangerDeptName;
|
|
/** 隐患地点 */
|
@Excel(name = "隐患地点")
|
private String dangerPlace;
|
|
/** 排查时间 */
|
@Excel(name = "排查时间", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date checkTime;
|
|
/** 隐患整改前照片 */
|
@Excel(name = "隐患整改前照片")
|
private String preRectifyPhoto;
|
|
/** 登记创建人ID */
|
@Excel(name = "登记创建人ID")
|
private Long registerUserId;
|
|
/** 登记创建人姓名 */
|
@Excel(name = "登记创建人姓名")
|
private String registerUserName;
|
|
/** 登记创建时间 */
|
@Excel(name = "登记创建时间", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date registerCreateTime;
|
|
/** 登记提交时间 */
|
@Excel(name = "登记提交时间", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date registerSubmitTime;
|
|
/** 判定人ID */
|
@Excel(name = "判定人ID")
|
private Long judgeUserId;
|
|
/** 判定人名称 */
|
@Excel(name = "判定人名称")
|
private String judgeUserName;
|
|
/** 判定创建时间 */
|
@Excel(name = "判定创建时间", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date judgeCreateTime;
|
|
/** 隐患上报创建人ID */
|
@Excel(name = "隐患上报创建人ID")
|
private Long judgeCreateUserId;
|
|
/** 隐患来源(1隐患计划排查生成 2隐患上报生成) */
|
@Excel(name = "隐患来源(1隐患计划排查生成 2隐患上报生成)")
|
private String dangerSources;
|
|
/** 上报判定结果(0未判定 1不是隐患 2是隐患) */
|
@Excel(name = "上报判定结果(0未判定 1不是隐患 2是隐患)")
|
private String reportStatus;
|
|
/** 核查人ID */
|
@Excel(name = "核查人ID")
|
private Long examineUserId;
|
|
/** 核查人名称 */
|
@Excel(name = "核查人名称")
|
private String examineUserName;
|
|
/** 核查状态(0待核查 1已核查) */
|
@Excel(name = "核查状态", readConverterExp = "0=待核查,1=已核查")
|
private String examineStatus;
|
|
/** 隐患核查意见 */
|
@Excel(name = "隐患核查意见")
|
private String examineOpinion;
|
|
/** 隐患核查结果(0一般隐患 1重大隐患) */
|
@Excel(name = "隐患核查结果(0一般隐患 1重大隐患)")
|
private String examineResult;
|
|
/** 核查创建时间 */
|
@Excel(name = "核查创建时间", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date examineCreateTime;
|
|
/** 治理措施 */
|
@Excel(name = "治理措施")
|
private String treatMeasure;
|
|
/** 整改人ID */
|
@Excel(name = "整改人ID")
|
private Long rectifyUserId;
|
|
/** 整改人名称 */
|
@Excel(name = "整改人名称")
|
private String rectifyUserName;
|
|
/** 隐患整改责任部门ID */
|
@Excel(name = "隐患整改责任部门ID")
|
private Long rectifyDeptId;
|
|
/** 隐患整改责任部门名称 */
|
@Excel(name = "隐患整改责任部门名称")
|
private String rectifyDeptName;
|
|
/** 完成期限 */
|
@Excel(name = "完成期限", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date rectifyDeadlineTime;
|
|
/** 整改类型(1立即整改 2限期整改 3停产停业整改) */
|
@Excel(name = "整改类型", readConverterExp = "1=立即整改,2=限期整改,3=停产停业整改")
|
private String rectifyType;
|
|
/** 整改附件地址 */
|
@Excel(name = "整改附件地址")
|
private String rectifyAttachment;
|
|
/** 整改措施 */
|
@Excel(name = "整改措施")
|
private String rectifyMeasure;
|
|
/** 整改情况 */
|
@Excel(name = "整改情况")
|
private String rectifyCondition;
|
|
/** 整改资金 */
|
@Excel(name = "整改资金")
|
private String rectifyFund;
|
|
/** 整改完成时间 */
|
@Excel(name = "整改完成时间", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date rectifyCompleteTime;
|
|
/** 整改状态(0未整改 1已整改) */
|
@Excel(name = "整改状态(0未整改 1已整改)")
|
private String rectifyStatus;
|
|
/** 整改创建时间 */
|
@Excel(name = "整改创建时间", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date rectifyCreateTime;
|
|
/** 验收负责人ID */
|
@Excel(name = "验收负责人ID")
|
private Long acceptUserId;
|
|
/** 验收负责人姓名 */
|
@Excel(name = "验收负责人姓名")
|
private String acceptUserName;
|
|
/** 隐患整改后照片 */
|
@Excel(name = "隐患整改后照片")
|
private String postRectifyPhoto;
|
|
/** 验收结果(0不通过 1通过) */
|
@Excel(name = "验收结果", readConverterExp = "0=不通过,1=通过")
|
private String acceptResult;
|
|
/** 验收意见 */
|
@Excel(name = "验收意见")
|
private String acceptOpinion;
|
|
/** 验收文件 */
|
@Excel(name = "验收文件")
|
private String acceptFile;
|
|
/** 验收状态(0未验收 1验收通过 2验收未通过) */
|
@Excel(name = "验收状态(0未验收 1验收通过 2验收未通过)")
|
private String acceptStatus;
|
|
/** 验收创建时间 */
|
@Excel(name = "验收创建时间", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date acceptCreateTime;
|
|
/** 隐患排查阶段(1隐患排查计划制定阶段 2隐患排查计划执行阶段 3隐患核查阶段 4隐患整改阶段 5隐患验收阶段) */
|
@Excel(name = "隐患排查阶段(1隐患排查计划制定阶段 2隐患排查计划执行阶段 3隐患核查阶段 4隐患整改阶段 5隐患验收阶段)")
|
private String stage;
|
|
/** 任务ID */
|
@Excel(name = "任务ID")
|
private Long jobId;
|
|
/** 任务名称 */
|
@Excel(name = "任务名称")
|
private String jobName;
|
|
/** 任务组名 */
|
@Excel(name = "任务组名")
|
private String jobGroup;
|
|
/** 调用目标字符串 */
|
@Excel(name = "调用目标字符串")
|
private String invokeTarget;
|
|
/** 日志信息 */
|
@Excel(name = "日志信息")
|
private String jobMessage;
|
|
/** 执行状态(0正常 1失败) */
|
@Excel(name = "执行状态", readConverterExp = "0=正常,1=失败")
|
private String status;
|
|
/** 异常信息 */
|
@Excel(name = "异常信息")
|
private String exceptionInfo;
|
|
/** 开始时间 */
|
private Date startTime;
|
|
/** 结束时间 */
|
private Date endTime;
|
|
|
public String getJobGroup() {
|
return jobGroup;
|
}
|
|
public void setJobGroup(String jobGroup) {
|
this.jobGroup = jobGroup;
|
}
|
|
public String getInvokeTarget() {
|
return invokeTarget;
|
}
|
|
public void setInvokeTarget(String invokeTarget) {
|
this.invokeTarget = invokeTarget;
|
}
|
|
public String getJobMessage() {
|
return jobMessage;
|
}
|
|
public void setJobMessage(String jobMessage) {
|
this.jobMessage = jobMessage;
|
}
|
|
public String getStatus() {
|
return status;
|
}
|
|
public void setStatus(String status) {
|
this.status = status;
|
}
|
|
public String getExceptionInfo() {
|
return exceptionInfo;
|
}
|
|
public void setExceptionInfo(String exceptionInfo) {
|
this.exceptionInfo = exceptionInfo;
|
}
|
|
public Date getStartTime() {
|
return startTime;
|
}
|
|
public void setStartTime(Date startTime) {
|
this.startTime = startTime;
|
}
|
|
public Date getEndTime() {
|
return endTime;
|
}
|
|
public void setEndTime(Date endTime) {
|
this.endTime = endTime;
|
}
|
|
public Long getCheckJobLogId() {
|
return checkJobLogId;
|
}
|
|
public void setCheckJobLogId(Long checkJobLogId) {
|
this.checkJobLogId = checkJobLogId;
|
}
|
|
|
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 void setPlanCreateUserId(Long planCreateUserId)
|
{
|
this.planCreateUserId = planCreateUserId;
|
}
|
|
public Long getPlanCreateUserId()
|
{
|
return planCreateUserId;
|
}
|
public void setPlanName(String planName)
|
{
|
this.planName = planName;
|
}
|
|
public String getPlanName()
|
{
|
return planName;
|
}
|
public void setTroubleshootTypeId(Long troubleshootTypeId)
|
{
|
this.troubleshootTypeId = troubleshootTypeId;
|
}
|
|
public Long getTroubleshootTypeId()
|
{
|
return troubleshootTypeId;
|
}
|
public void setTroubleshootTypeName(String troubleshootTypeName)
|
{
|
this.troubleshootTypeName = troubleshootTypeName;
|
}
|
|
public String getTroubleshootTypeName()
|
{
|
return troubleshootTypeName;
|
}
|
public void setOrganizationDeptId(Long organizationDeptId)
|
{
|
this.organizationDeptId = organizationDeptId;
|
}
|
|
public Long getOrganizationDeptId()
|
{
|
return organizationDeptId;
|
}
|
public void setOrganizationDeptName(String organizationDeptName)
|
{
|
this.organizationDeptName = organizationDeptName;
|
}
|
|
public String getOrganizationDeptName()
|
{
|
return organizationDeptName;
|
}
|
public void setRiskType(String riskType)
|
{
|
this.riskType = riskType;
|
}
|
|
public String getRiskType()
|
{
|
return riskType;
|
}
|
public void setRiskId(Long riskId)
|
{
|
this.riskId = riskId;
|
}
|
|
public Long getRiskId()
|
{
|
return riskId;
|
}
|
public void setRiskName(String riskName)
|
{
|
this.riskName = riskName;
|
}
|
|
public String getRiskName()
|
{
|
return riskName;
|
}
|
public void setCheckUserId(Long checkUserId)
|
{
|
this.checkUserId = checkUserId;
|
}
|
|
public Long getCheckUserId()
|
{
|
return checkUserId;
|
}
|
public void setCheckUserName(String checkUserName)
|
{
|
this.checkUserName = checkUserName;
|
}
|
|
public String getCheckUserName()
|
{
|
return checkUserName;
|
}
|
public void setBeCheckedDeptId(Long beCheckedDeptId)
|
{
|
this.beCheckedDeptId = beCheckedDeptId;
|
}
|
|
public Long getBeCheckedDeptId()
|
{
|
return beCheckedDeptId;
|
}
|
public void setBeCheckedDeptName(String beCheckedDeptName)
|
{
|
this.beCheckedDeptName = beCheckedDeptName;
|
}
|
|
public String getBeCheckedDeptName()
|
{
|
return beCheckedDeptName;
|
}
|
public void setCheckBeginTime(String checkBeginTime)
|
{
|
this.checkBeginTime = checkBeginTime;
|
}
|
|
public String getCheckBeginTime()
|
{
|
return checkBeginTime;
|
}
|
public void setCheckEndTime(String checkEndTime)
|
{
|
this.checkEndTime = checkEndTime;
|
}
|
|
public String getCheckEndTime()
|
{
|
return checkEndTime;
|
}
|
public void setPlanFormulateStatus(String planFormulateStatus)
|
{
|
this.planFormulateStatus = planFormulateStatus;
|
}
|
|
public String getPlanFormulateStatus()
|
{
|
return planFormulateStatus;
|
}
|
public void setPlanExecuteStatus(String planExecuteStatus)
|
{
|
this.planExecuteStatus = planExecuteStatus;
|
}
|
|
public String getPlanExecuteStatus()
|
{
|
return planExecuteStatus;
|
}
|
public void setCheckStatus(String checkStatus)
|
{
|
this.checkStatus = checkStatus;
|
}
|
|
public String getCheckStatus()
|
{
|
return checkStatus;
|
}
|
public void setWhetherDanger(String whetherDanger)
|
{
|
this.whetherDanger = whetherDanger;
|
}
|
|
public String getWhetherDanger()
|
{
|
return whetherDanger;
|
}
|
public void setDangerName(String dangerName)
|
{
|
this.dangerName = dangerName;
|
}
|
|
public String getDangerName()
|
{
|
return dangerName;
|
}
|
public void setDangerDescription(String dangerDescription)
|
{
|
this.dangerDescription = dangerDescription;
|
}
|
|
public String getDangerDescription()
|
{
|
return dangerDescription;
|
}
|
public void setDangerLevel(String dangerLevel)
|
{
|
this.dangerLevel = dangerLevel;
|
}
|
|
public String getDangerLevel()
|
{
|
return dangerLevel;
|
}
|
public void setTroubleTypeId(Long troubleTypeId)
|
{
|
this.troubleTypeId = troubleTypeId;
|
}
|
|
public Long getTroubleTypeId()
|
{
|
return troubleTypeId;
|
}
|
public void setTroubleTypeName(String troubleTypeName)
|
{
|
this.troubleTypeName = troubleTypeName;
|
}
|
|
public String getTroubleTypeName()
|
{
|
return troubleTypeName;
|
}
|
public void setDangerDeptId(Long dangerDeptId)
|
{
|
this.dangerDeptId = dangerDeptId;
|
}
|
|
public Long getDangerDeptId()
|
{
|
return dangerDeptId;
|
}
|
public void setDangerDeptName(String dangerDeptName)
|
{
|
this.dangerDeptName = dangerDeptName;
|
}
|
|
public String getDangerDeptName()
|
{
|
return dangerDeptName;
|
}
|
public void setDangerPlace(String dangerPlace)
|
{
|
this.dangerPlace = dangerPlace;
|
}
|
|
public String getDangerPlace()
|
{
|
return dangerPlace;
|
}
|
public void setCheckTime(Date checkTime)
|
{
|
this.checkTime = checkTime;
|
}
|
|
public Date getCheckTime()
|
{
|
return checkTime;
|
}
|
public void setPreRectifyPhoto(String preRectifyPhoto)
|
{
|
this.preRectifyPhoto = preRectifyPhoto;
|
}
|
|
public String getPreRectifyPhoto()
|
{
|
return preRectifyPhoto;
|
}
|
public void setRegisterUserId(Long registerUserId)
|
{
|
this.registerUserId = registerUserId;
|
}
|
|
public Long getRegisterUserId()
|
{
|
return registerUserId;
|
}
|
public void setRegisterUserName(String registerUserName)
|
{
|
this.registerUserName = registerUserName;
|
}
|
|
public String getRegisterUserName()
|
{
|
return registerUserName;
|
}
|
public void setRegisterCreateTime(Date registerCreateTime)
|
{
|
this.registerCreateTime = registerCreateTime;
|
}
|
|
public Date getRegisterCreateTime()
|
{
|
return registerCreateTime;
|
}
|
public void setRegisterSubmitTime(Date registerSubmitTime)
|
{
|
this.registerSubmitTime = registerSubmitTime;
|
}
|
|
public Date getRegisterSubmitTime()
|
{
|
return registerSubmitTime;
|
}
|
public void setJudgeUserId(Long judgeUserId)
|
{
|
this.judgeUserId = judgeUserId;
|
}
|
|
public Long getJudgeUserId()
|
{
|
return judgeUserId;
|
}
|
public void setJudgeUserName(String judgeUserName)
|
{
|
this.judgeUserName = judgeUserName;
|
}
|
|
public String getJudgeUserName()
|
{
|
return judgeUserName;
|
}
|
public void setJudgeCreateTime(Date judgeCreateTime)
|
{
|
this.judgeCreateTime = judgeCreateTime;
|
}
|
|
public Date getJudgeCreateTime()
|
{
|
return judgeCreateTime;
|
}
|
public void setJudgeCreateUserId(Long judgeCreateUserId)
|
{
|
this.judgeCreateUserId = judgeCreateUserId;
|
}
|
|
public Long getJudgeCreateUserId()
|
{
|
return judgeCreateUserId;
|
}
|
public void setDangerSources(String dangerSources)
|
{
|
this.dangerSources = dangerSources;
|
}
|
|
public String getDangerSources()
|
{
|
return dangerSources;
|
}
|
public void setReportStatus(String reportStatus)
|
{
|
this.reportStatus = reportStatus;
|
}
|
|
public String getReportStatus()
|
{
|
return reportStatus;
|
}
|
public void setExamineUserId(Long examineUserId)
|
{
|
this.examineUserId = examineUserId;
|
}
|
|
public Long getExamineUserId()
|
{
|
return examineUserId;
|
}
|
public void setExamineUserName(String examineUserName)
|
{
|
this.examineUserName = examineUserName;
|
}
|
|
public String getExamineUserName()
|
{
|
return examineUserName;
|
}
|
public void setExamineStatus(String examineStatus)
|
{
|
this.examineStatus = examineStatus;
|
}
|
|
public String getExamineStatus()
|
{
|
return examineStatus;
|
}
|
public void setExamineOpinion(String examineOpinion)
|
{
|
this.examineOpinion = examineOpinion;
|
}
|
|
public String getExamineOpinion()
|
{
|
return examineOpinion;
|
}
|
public void setExamineResult(String examineResult)
|
{
|
this.examineResult = examineResult;
|
}
|
|
public String getExamineResult()
|
{
|
return examineResult;
|
}
|
public void setExamineCreateTime(Date examineCreateTime)
|
{
|
this.examineCreateTime = examineCreateTime;
|
}
|
|
public Date getExamineCreateTime()
|
{
|
return examineCreateTime;
|
}
|
public void setTreatMeasure(String treatMeasure)
|
{
|
this.treatMeasure = treatMeasure;
|
}
|
|
public String getTreatMeasure()
|
{
|
return treatMeasure;
|
}
|
public void setRectifyUserId(Long rectifyUserId)
|
{
|
this.rectifyUserId = rectifyUserId;
|
}
|
|
public Long getRectifyUserId()
|
{
|
return rectifyUserId;
|
}
|
public void setRectifyUserName(String rectifyUserName)
|
{
|
this.rectifyUserName = rectifyUserName;
|
}
|
|
public String getRectifyUserName()
|
{
|
return rectifyUserName;
|
}
|
public void setRectifyDeptId(Long rectifyDeptId)
|
{
|
this.rectifyDeptId = rectifyDeptId;
|
}
|
|
public Long getRectifyDeptId()
|
{
|
return rectifyDeptId;
|
}
|
public void setRectifyDeptName(String rectifyDeptName)
|
{
|
this.rectifyDeptName = rectifyDeptName;
|
}
|
|
public String getRectifyDeptName()
|
{
|
return rectifyDeptName;
|
}
|
public void setRectifyDeadlineTime(Date rectifyDeadlineTime)
|
{
|
this.rectifyDeadlineTime = rectifyDeadlineTime;
|
}
|
|
public Date getRectifyDeadlineTime()
|
{
|
return rectifyDeadlineTime;
|
}
|
public void setRectifyType(String rectifyType)
|
{
|
this.rectifyType = rectifyType;
|
}
|
|
public String getRectifyType()
|
{
|
return rectifyType;
|
}
|
public void setRectifyAttachment(String rectifyAttachment)
|
{
|
this.rectifyAttachment = rectifyAttachment;
|
}
|
|
public String getRectifyAttachment()
|
{
|
return rectifyAttachment;
|
}
|
public void setRectifyMeasure(String rectifyMeasure)
|
{
|
this.rectifyMeasure = rectifyMeasure;
|
}
|
|
public String getRectifyMeasure()
|
{
|
return rectifyMeasure;
|
}
|
public void setRectifyCondition(String rectifyCondition)
|
{
|
this.rectifyCondition = rectifyCondition;
|
}
|
|
public String getRectifyCondition()
|
{
|
return rectifyCondition;
|
}
|
public void setRectifyFund(String rectifyFund)
|
{
|
this.rectifyFund = rectifyFund;
|
}
|
|
public String getRectifyFund()
|
{
|
return rectifyFund;
|
}
|
public void setRectifyCompleteTime(Date rectifyCompleteTime)
|
{
|
this.rectifyCompleteTime = rectifyCompleteTime;
|
}
|
|
public Date getRectifyCompleteTime()
|
{
|
return rectifyCompleteTime;
|
}
|
public void setRectifyStatus(String rectifyStatus)
|
{
|
this.rectifyStatus = rectifyStatus;
|
}
|
|
public String getRectifyStatus()
|
{
|
return rectifyStatus;
|
}
|
public void setRectifyCreateTime(Date rectifyCreateTime)
|
{
|
this.rectifyCreateTime = rectifyCreateTime;
|
}
|
|
public Date getRectifyCreateTime()
|
{
|
return rectifyCreateTime;
|
}
|
public void setAcceptUserId(Long acceptUserId)
|
{
|
this.acceptUserId = acceptUserId;
|
}
|
|
public Long getAcceptUserId()
|
{
|
return acceptUserId;
|
}
|
public void setAcceptUserName(String acceptUserName)
|
{
|
this.acceptUserName = acceptUserName;
|
}
|
|
public String getAcceptUserName()
|
{
|
return acceptUserName;
|
}
|
public void setPostRectifyPhoto(String postRectifyPhoto)
|
{
|
this.postRectifyPhoto = postRectifyPhoto;
|
}
|
|
public String getPostRectifyPhoto()
|
{
|
return postRectifyPhoto;
|
}
|
public void setAcceptResult(String acceptResult)
|
{
|
this.acceptResult = acceptResult;
|
}
|
|
public String getAcceptResult()
|
{
|
return acceptResult;
|
}
|
public void setAcceptOpinion(String acceptOpinion)
|
{
|
this.acceptOpinion = acceptOpinion;
|
}
|
|
public String getAcceptOpinion()
|
{
|
return acceptOpinion;
|
}
|
public void setAcceptFile(String acceptFile)
|
{
|
this.acceptFile = acceptFile;
|
}
|
|
public String getAcceptFile()
|
{
|
return acceptFile;
|
}
|
public void setAcceptStatus(String acceptStatus)
|
{
|
this.acceptStatus = acceptStatus;
|
}
|
|
public String getAcceptStatus()
|
{
|
return acceptStatus;
|
}
|
public void setAcceptCreateTime(Date acceptCreateTime)
|
{
|
this.acceptCreateTime = acceptCreateTime;
|
}
|
|
public Date getAcceptCreateTime()
|
{
|
return acceptCreateTime;
|
}
|
public void setStage(String stage)
|
{
|
this.stage = stage;
|
}
|
|
public String getStage()
|
{
|
return stage;
|
}
|
public void setJobId(Long jobId)
|
{
|
this.jobId = jobId;
|
}
|
|
public Long getJobId()
|
{
|
return jobId;
|
}
|
public void setJobName(String jobName)
|
{
|
this.jobName = jobName;
|
}
|
|
public String getJobName()
|
{
|
return jobName;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("createBy", getCreateBy())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateTime", getUpdateTime())
|
.append("remark", getRemark())
|
.append("planCreateUserId", getPlanCreateUserId())
|
.append("planName", getPlanName())
|
.append("troubleshootTypeId", getTroubleshootTypeId())
|
.append("troubleshootTypeName", getTroubleshootTypeName())
|
.append("organizationDeptId", getOrganizationDeptId())
|
.append("organizationDeptName", getOrganizationDeptName())
|
.append("riskType", getRiskType())
|
.append("riskId", getRiskId())
|
.append("riskName", getRiskName())
|
.append("checkUserId", getCheckUserId())
|
.append("checkUserName", getCheckUserName())
|
.append("beCheckedDeptId", getBeCheckedDeptId())
|
.append("beCheckedDeptName", getBeCheckedDeptName())
|
.append("checkBeginTime", getCheckBeginTime())
|
.append("checkEndTime", getCheckEndTime())
|
.append("planFormulateStatus", getPlanFormulateStatus())
|
.append("planExecuteStatus", getPlanExecuteStatus())
|
.append("checkStatus", getCheckStatus())
|
.append("whetherDanger", getWhetherDanger())
|
.append("dangerName", getDangerName())
|
.append("dangerDescription", getDangerDescription())
|
.append("dangerLevel", getDangerLevel())
|
.append("troubleTypeId", getTroubleTypeId())
|
.append("troubleTypeName", getTroubleTypeName())
|
.append("dangerDeptId", getDangerDeptId())
|
.append("dangerDeptName", getDangerDeptName())
|
.append("dangerPlace", getDangerPlace())
|
.append("checkTime", getCheckTime())
|
.append("preRectifyPhoto", getPreRectifyPhoto())
|
.append("registerUserId", getRegisterUserId())
|
.append("registerUserName", getRegisterUserName())
|
.append("registerCreateTime", getRegisterCreateTime())
|
.append("registerSubmitTime", getRegisterSubmitTime())
|
.append("judgeUserId", getJudgeUserId())
|
.append("judgeUserName", getJudgeUserName())
|
.append("judgeCreateTime", getJudgeCreateTime())
|
.append("judgeCreateUserId", getJudgeCreateUserId())
|
.append("dangerSources", getDangerSources())
|
.append("reportStatus", getReportStatus())
|
.append("examineUserId", getExamineUserId())
|
.append("examineUserName", getExamineUserName())
|
.append("examineStatus", getExamineStatus())
|
.append("examineOpinion", getExamineOpinion())
|
.append("examineResult", getExamineResult())
|
.append("examineCreateTime", getExamineCreateTime())
|
.append("treatMeasure", getTreatMeasure())
|
.append("rectifyUserId", getRectifyUserId())
|
.append("rectifyUserName", getRectifyUserName())
|
.append("rectifyDeptId", getRectifyDeptId())
|
.append("rectifyDeptName", getRectifyDeptName())
|
.append("rectifyDeadlineTime", getRectifyDeadlineTime())
|
.append("rectifyType", getRectifyType())
|
.append("rectifyAttachment", getRectifyAttachment())
|
.append("rectifyMeasure", getRectifyMeasure())
|
.append("rectifyCondition", getRectifyCondition())
|
.append("rectifyFund", getRectifyFund())
|
.append("rectifyCompleteTime", getRectifyCompleteTime())
|
.append("rectifyStatus", getRectifyStatus())
|
.append("rectifyCreateTime", getRectifyCreateTime())
|
.append("acceptUserId", getAcceptUserId())
|
.append("acceptUserName", getAcceptUserName())
|
.append("postRectifyPhoto", getPostRectifyPhoto())
|
.append("acceptResult", getAcceptResult())
|
.append("acceptOpinion", getAcceptOpinion())
|
.append("acceptFile", getAcceptFile())
|
.append("acceptStatus", getAcceptStatus())
|
.append("acceptCreateTime", getAcceptCreateTime())
|
.append("stage", getStage())
|
.append("jobId", getJobId())
|
.append("jobName", getJobName())
|
.toString();
|
}
|
}
|