package com.ruoyi.project.tr.hiddenDangerCheckPoint.domain;
|
|
import com.alibaba.fastjson.annotation.JSONField;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import com.ruoyi.framework.web.domain.BaseEntity;
|
import com.ruoyi.project.system.company.domain.Company;
|
import kotlin.jvm.Transient;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
import java.util.Date;
|
import java.util.List;
|
|
/**
|
* 隐患排查检查点信息表 tr_hidden_danger_check_point
|
*
|
*/
|
public class HiddenDangerCheckPoint extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 主键ID */
|
private Long id;
|
|
/** 隐患排查检查点信息ID */
|
private Long checkPointId;
|
|
/** 隐患排查ID */
|
private Long checkId;
|
|
|
/** 计划创建人ID */
|
@Excel(name = "计划创建人ID")
|
private Long planCreateUserId;
|
|
/** 计划名称 */
|
@Excel(name = "计划名称")
|
private String planName;
|
|
/** 排查类型id */
|
@Excel(name = "排查类型id")
|
private Long troubleshootTypeId;
|
|
/** 排查类型名称 */
|
@Excel(name = "排查类型名称")
|
private String troubleshootTypeName;
|
|
/** 隐患排查周期数 */
|
private Long troubleshootTypeCycleNum;
|
|
/** 隐患排查周期类型(1小时,2日,3周,4月,5年) */
|
private Long troubleshootTypeCycleType;
|
|
/** 组织单位ID */
|
@Excel(name = "组织单位ID")
|
private Long organizationDeptId;
|
|
/** 组织单位名称 */
|
@Excel(name = "组织单位名称")
|
private String organizationDeptName;
|
|
/** 风险单元类型(1设备设施清单 2作业活动清单 3工艺节点清单) */
|
@Excel(name = "风险单元类型")
|
private String riskType;
|
|
/** 风险单元ID */
|
@Excel(name = "风险单元ID")
|
private Long riskId;
|
|
/** 风险单元ID集合(隐患排查计划制定 使用) */
|
private String riskIdLabel;
|
|
/** 风险单元名称 */
|
@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已派发) */
|
@Excel(name = "隐患排查计划制定", readConverterExp = "0=未开始,1=已派发")
|
private String planFormulateStatus;
|
|
|
|
/** 排除---------隐患排查计划制定(为某个状态的) */
|
private String planFormulateStatusExclude;
|
|
|
/** 隐患排查计划执行(0未开始 1进行中 2已执行) */
|
@Excel(name = "隐患排查计划执行", readConverterExp = "0=未开始,1=进行中,2=已执行")
|
private String planExecuteStatus;
|
|
/** 排查状态(0待排查 1已排查) */
|
@Excel(name = "排查状态", readConverterExp = "0=待排查,1=已排查")
|
private String checkStatus;
|
|
/** 是否为隐患 */
|
@Excel(name = "是否为隐患")
|
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;
|
|
|
|
/** 隐患责任部门ID */
|
@Excel(name = "隐患责任部门ID")
|
private String dangerDeptId;
|
|
|
|
/** 隐患责任部门名称 */
|
@Excel(name = "隐患责任部门名称")
|
private String dangerDeptName;
|
|
|
|
/** 隐患地点ID */
|
@Excel(name = "隐患地点ID")
|
private String dangerPlaceId;
|
|
|
/** 隐患地点名称 */
|
@Excel(name = "隐患地点名称")
|
private String dangerPlaceName;
|
|
/** 排查时间 */
|
@Excel(name = "排查时间", width = 30, dateFormat = "yyyy-MM-dd")
|
@JsonFormat(pattern = "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")
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
private Date registerCreateTime;
|
|
|
/** 登记提交时间 */
|
@Excel(name = "登记提交时间", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date registerSubmitTime;
|
|
/** 判定人ID */
|
private Long judgeUserId;
|
|
/** 上报判定结果为1或2 (上报判定结果(0未判定 1不是隐患 2是隐患))*/
|
private String reportStatusByHasHandle;
|
|
|
/** 上报判定结果IS NOT NULL*/
|
private String reportStatusIsNotNull;
|
|
/** 判定人名称 */
|
@Excel(name = "判定人名称")
|
private String judgeUserName;
|
|
|
/** 判定创建时间 */
|
@Excel(name = "判定创建时间", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date judgeCreateTime;
|
|
|
/** 隐患上报创建人ID */
|
@Excel(name = "隐患上报创建人ID")
|
private Long judgeCreateUserId;
|
|
|
/** 隐患上报列表查询---------------查询隐患上报创建人(judgeCreateUserId) 和 判定人(judgeUserId)为本登录帐号userId的 */
|
private Long judgeQueryByUserId;
|
|
//隐患上报列表查询---------------查询隐患上报创建人(judgeCreateUserId) 和 判定人(judgeUserId) 为登陆账号companyId下的userId的(数据统计使用)
|
private List<Long> judgeQueryByUserIdList;
|
|
|
|
/** 隐患来源(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")
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
private Date rectifyDeadlineTime;
|
|
/** 整改类型(1立即整改 2限期整改 3停产停业整改) */
|
@Excel(name = "整改类型(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")
|
@JsonFormat(pattern = "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;
|
|
/** 验收结果 */
|
@Excel(name = "验收结果")
|
private String acceptResult;
|
|
/** 验收意见 */
|
@Excel(name = "验收意见")
|
private String acceptOpinion;
|
|
/** 验收文件 */
|
@Excel(name = "验收文件")
|
private String acceptFile;
|
|
/** 验收状态(0未验收 1验收通过) */
|
@Excel(name = "验收状态")
|
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 scheduleCreateUserId;
|
|
/** 定时任务创建人名称(定时任务生成的数据) */
|
@Excel(name = "定时任务创建人名称")
|
private String scheduleCreateUserName;
|
|
|
/** 排查执行人ID(定时任务生成的数据) */
|
@Excel(name = "排查执行人ID", readConverterExp = "定=时任务生成的数据")
|
private Long scheduleCheckUserId;
|
|
/** 排查执行人名称(定时任务生成的数据) */
|
@Excel(name = "排查执行人名称", readConverterExp = "定=时任务生成的数据")
|
private String scheduleCheckUserName;
|
|
/** 排查状态(0待排查 1已排查)(定时任务生成的数据) */
|
@Excel(name = "排查状态", readConverterExp = "0=待排查,1=已排查")
|
private String scheduleCheckStatus;
|
|
/** 任务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;
|
|
|
|
//排查类型(1基础清单排查 2选择风险单元清单排查)
|
private String checkType;
|
|
|
//隐患整改人ID 为登陆账号companyId下的userId的(隐患台账使用)
|
private Long ledgerUserId;
|
|
//隐患整改人ID 为登陆账号companyId下的userId的(隐患台账使用)
|
private List<Long> ledgerUserIdList;
|
|
//隐患整改人ID 不为空
|
private String rectifyUserIdIsNotNull;
|
|
//公司列表
|
List<Long> companyIdList;
|
|
//隐患核查人ID 为登陆账号companyId下的userId的(数据统计使用)
|
private List<Long> examineUserIdList;
|
|
/** 计划创建人姓名 */
|
private String planCreateUserName;
|
|
|
//判断记录是否为 超期改(隐患台账使用)
|
private String overdueRectify;
|
|
|
private Long companyId;
|
|
|
|
|
|
|
/**
|
* hazard_code 风先分析对象编码(风险分析单元编码)
|
* */
|
@Transient
|
private String hazardCode;
|
/**
|
* 隐患来源
|
* 1-日常排查;2-综合性排查;3-专业性排查;4-季节性排查;5-重点时段及节假日前排查
|
* 6-事故类比排查;7-复产复工前排查;8-外聘专家诊断式排查;9-管控措施实效;10-其他;11-政府执法检查
|
* */
|
@Transient
|
private Byte dangerSrc;
|
// /**
|
// * 隐患描述
|
// * */
|
// private String dangerDesc;
|
/**
|
* 隐患产生的原因
|
* */
|
@Transient
|
private String dangerReason;
|
/**
|
* 隐患类型
|
* 1-安全;2-工艺;3-电气;4-仪表
|
* 5-消防;6-总图;7-设备;8其他
|
* */
|
@Transient
|
private Byte hazardDangerType;
|
// /**
|
// * 隐患状态
|
// * 0-整改中
|
// * 1-待验收
|
// * 2-延期整改
|
// * 3-超期未整改
|
// * 9-已验收
|
// */
|
// private Byte dangerState;
|
/**
|
* 隐患造成的结果:1-无;2-轻伤;3-重伤;4-死亡
|
*/
|
@Transient
|
private Byte dangerResult;
|
|
|
public Byte getDangerResult() {
|
return dangerResult;
|
}
|
|
public void setDangerResult(Byte dangerResult) {
|
this.dangerResult = dangerResult;
|
}
|
|
public String getHazardCode() {
|
return hazardCode;
|
}
|
|
public void setHazardCode(String hazardCode) {
|
this.hazardCode = hazardCode;
|
}
|
|
public Byte getDangerSrc() {
|
return dangerSrc;
|
}
|
|
public void setDangerSrc(Byte dangerSrc) {
|
this.dangerSrc = dangerSrc;
|
}
|
|
public String getDangerReason() {
|
return dangerReason;
|
}
|
|
public void setDangerReason(String dangerReason) {
|
this.dangerReason = dangerReason;
|
}
|
|
public Byte getHazardDangerType() {
|
return hazardDangerType;
|
}
|
|
public void setHazardDangerType(Byte hazardDangerType) {
|
this.hazardDangerType = hazardDangerType;
|
}
|
|
public List<Long> getCompanyIdList() {
|
return companyIdList;
|
}
|
|
public void setCompanyIdList(List<Long> companyIdList) {
|
this.companyIdList = companyIdList;
|
}
|
|
public String getRectifyUserIdIsNotNull() {
|
return rectifyUserIdIsNotNull;
|
}
|
|
public void setRectifyUserIdIsNotNull(String rectifyUserIdIsNotNull) {
|
this.rectifyUserIdIsNotNull = rectifyUserIdIsNotNull;
|
}
|
|
public Long getCompanyId() {
|
return companyId;
|
}
|
|
public void setCompanyId(Long companyId) {
|
this.companyId = companyId;
|
}
|
|
public String getOverdueRectify() {
|
return overdueRectify;
|
}
|
|
public void setOverdueRectify(String overdueRectify) {
|
this.overdueRectify = overdueRectify;
|
}
|
|
public List<Long> getJudgeQueryByUserIdList() {
|
return judgeQueryByUserIdList;
|
}
|
|
public void setJudgeQueryByUserIdList(List<Long> judgeQueryByUserIdList) {
|
this.judgeQueryByUserIdList = judgeQueryByUserIdList;
|
}
|
|
public List<Long> getExamineUserIdList() {
|
return examineUserIdList;
|
}
|
|
public void setExamineUserIdList(List<Long> examineUserIdList) {
|
this.examineUserIdList = examineUserIdList;
|
}
|
|
public String getDangerPlaceId() {
|
return dangerPlaceId;
|
}
|
|
public void setDangerPlaceId(String dangerPlaceId) {
|
this.dangerPlaceId = dangerPlaceId;
|
}
|
|
public String getDangerPlaceName() {
|
return dangerPlaceName;
|
}
|
|
public void setDangerPlaceName(String dangerPlaceName) {
|
this.dangerPlaceName = dangerPlaceName;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getCheckPointId() {
|
return checkPointId;
|
}
|
|
public void setCheckPointId(Long checkPointId) {
|
this.checkPointId = checkPointId;
|
}
|
|
public List<Long> getLedgerUserIdList() {
|
return ledgerUserIdList;
|
}
|
|
public void setLedgerUserIdList(List<Long> ledgerUserIdList) {
|
this.ledgerUserIdList = ledgerUserIdList;
|
}
|
|
|
public String getPlanCreateUserName() {
|
return planCreateUserName;
|
}
|
|
public void setPlanCreateUserName(String planCreateUserName) {
|
this.planCreateUserName = planCreateUserName;
|
}
|
|
public Long getLedgerUserId() {
|
return ledgerUserId;
|
}
|
|
public void setLedgerUserId(Long ledgerUserId) {
|
this.ledgerUserId = ledgerUserId;
|
}
|
|
public void setCheckId(Long checkId)
|
{
|
this.checkId = checkId;
|
}
|
|
public Long getCheckId()
|
{
|
return checkId;
|
}
|
|
|
public String getRiskIdLabel() {
|
return riskIdLabel;
|
}
|
|
public void setRiskIdLabel(String riskIdLabel) {
|
this.riskIdLabel = riskIdLabel;
|
}
|
|
public String getCheckType() {
|
return checkType;
|
}
|
|
public void setCheckType(String checkType) {
|
this.checkType = checkType;
|
}
|
|
|
public Long getScheduleCreateUserId() {
|
return scheduleCreateUserId;
|
}
|
|
public void setScheduleCreateUserId(Long scheduleCreateUserId) {
|
this.scheduleCreateUserId = scheduleCreateUserId;
|
}
|
|
public String getScheduleCreateUserName() {
|
return scheduleCreateUserName;
|
}
|
|
public void setScheduleCreateUserName(String scheduleCreateUserName) {
|
this.scheduleCreateUserName = scheduleCreateUserName;
|
}
|
|
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 Long getScheduleCheckUserId() {
|
return scheduleCheckUserId;
|
}
|
|
public void setScheduleCheckUserId(Long scheduleCheckUserId) {
|
this.scheduleCheckUserId = scheduleCheckUserId;
|
}
|
|
public String getScheduleCheckUserName() {
|
return scheduleCheckUserName;
|
}
|
|
public void setScheduleCheckUserName(String scheduleCheckUserName) {
|
this.scheduleCheckUserName = scheduleCheckUserName;
|
}
|
|
public String getScheduleCheckStatus() {
|
return scheduleCheckStatus;
|
}
|
|
public void setScheduleCheckStatus(String scheduleCheckStatus) {
|
this.scheduleCheckStatus = scheduleCheckStatus;
|
}
|
|
public Long getJobId() {
|
return jobId;
|
}
|
|
public void setJobId(Long jobId) {
|
this.jobId = jobId;
|
}
|
|
public String getJobName() {
|
return jobName;
|
}
|
|
public void setJobName(String jobName) {
|
this.jobName = jobName;
|
}
|
|
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 String getRiskType() {
|
return riskType;
|
}
|
|
public void setRiskType(String riskType) {
|
this.riskType = riskType;
|
}
|
|
public String getReportStatusIsNotNull() {
|
return reportStatusIsNotNull;
|
}
|
|
public void setReportStatusIsNotNull(String reportStatusIsNotNull) {
|
this.reportStatusIsNotNull = reportStatusIsNotNull;
|
}
|
|
public String getReportStatusByHasHandle() {
|
return reportStatusByHasHandle;
|
}
|
|
public void setReportStatusByHasHandle(String reportStatusByHasHandle) {
|
this.reportStatusByHasHandle = reportStatusByHasHandle;
|
}
|
|
public Long getRegisterUserId() {
|
return registerUserId;
|
}
|
|
public void setRegisterUserId(Long registerUserId) {
|
this.registerUserId = registerUserId;
|
}
|
|
public String getRegisterUserName() {
|
return registerUserName;
|
}
|
|
public void setRegisterUserName(String registerUserName) {
|
this.registerUserName = registerUserName;
|
}
|
|
public Date getRegisterSubmitTime() {
|
return registerSubmitTime;
|
}
|
|
public void setRegisterSubmitTime(Date registerSubmitTime) {
|
this.registerSubmitTime = registerSubmitTime;
|
}
|
|
public Long getJudgeQueryByUserId() {
|
return judgeQueryByUserId;
|
}
|
|
public void setJudgeQueryByUserId(Long judgeQueryByUserId) {
|
this.judgeQueryByUserId = judgeQueryByUserId;
|
}
|
|
public Long getJudgeCreateUserId() {
|
return judgeCreateUserId;
|
}
|
|
public void setJudgeCreateUserId(Long judgeCreateUserId) {
|
this.judgeCreateUserId = judgeCreateUserId;
|
}
|
|
public Long getJudgeUserId() {
|
return judgeUserId;
|
}
|
|
public void setJudgeUserId(Long judgeUserId) {
|
this.judgeUserId = judgeUserId;
|
}
|
|
public String getJudgeUserName() {
|
return judgeUserName;
|
}
|
|
public void setJudgeUserName(String judgeUserName) {
|
this.judgeUserName = judgeUserName;
|
}
|
|
public String getDangerDeptId() {
|
return dangerDeptId;
|
}
|
|
public void setDangerDeptId(String dangerDeptId) {
|
this.dangerDeptId = dangerDeptId;
|
}
|
|
public String getDangerDeptName() {
|
return dangerDeptName;
|
}
|
|
public void setDangerDeptName(String dangerDeptName) {
|
this.dangerDeptName = dangerDeptName;
|
}
|
|
public String getStage() {
|
return stage;
|
}
|
|
public void setStage(String stage) {
|
this.stage = stage;
|
}
|
|
public Long getPlanCreateUserId() {
|
return planCreateUserId;
|
}
|
|
public void setPlanCreateUserId(Long planCreateUserId) {
|
this.planCreateUserId = 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 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 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 setRegisterCreateTime(Date registerCreateTime)
|
{
|
this.registerCreateTime = registerCreateTime;
|
}
|
|
public Date getRegisterCreateTime()
|
{
|
return registerCreateTime;
|
}
|
public void setJudgeCreateTime(Date judgeCreateTime)
|
{
|
this.judgeCreateTime = judgeCreateTime;
|
}
|
|
public Date getJudgeCreateTime()
|
{
|
return judgeCreateTime;
|
}
|
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 String getAcceptStatus() {
|
return acceptStatus;
|
}
|
|
public void setAcceptStatus(String acceptStatus) {
|
this.acceptStatus = acceptStatus;
|
}
|
|
public Date getAcceptCreateTime() {
|
return acceptCreateTime;
|
}
|
|
public void setAcceptCreateTime(Date acceptCreateTime) {
|
this.acceptCreateTime = acceptCreateTime;
|
}
|
|
public String getPlanFormulateStatusExclude() {
|
return planFormulateStatusExclude;
|
}
|
|
public void setPlanFormulateStatusExclude(String planFormulateStatusExclude) {
|
this.planFormulateStatusExclude = planFormulateStatusExclude;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("checkId", getCheckId())
|
.append("createBy", getCreateBy())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateTime", getUpdateTime())
|
.append("remark", getRemark())
|
.append("planName", getPlanName())
|
.append("troubleshootTypeId", getTroubleshootTypeId())
|
.append("troubleshootTypeName", getTroubleshootTypeName())
|
.append("organizationDeptId", getOrganizationDeptId())
|
.append("organizationDeptName", getOrganizationDeptName())
|
.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("dangerPlaceId", getDangerPlaceId())
|
.append("dangerPlaceName", getDangerPlaceName())
|
.append("checkTime", getCheckTime())
|
.append("preRectifyPhoto", getPreRectifyPhoto())
|
.append("registerCreateTime", getRegisterCreateTime())
|
.append("judgeCreateTime", getJudgeCreateTime())
|
.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())
|
.toString();
|
}
|
}
|