package com.gkhy.safePlatform.doublePrevention.repository.param;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
public class PreventDangerRectifyUpdateParams {
|
/**
|
* 主键
|
*/
|
private Long id;
|
/**
|
* 整改类型:1-即查即改,2-限期整改
|
*/
|
private Byte rectifyType;
|
/**
|
* 整改期限
|
*/
|
private Date rectifyTime;
|
/**
|
* 整改责任人
|
*/
|
private Long liablePersonId;
|
/**
|
* 整改责任人
|
*/
|
private String liablePerson;
|
/**
|
* 整改措施
|
*/
|
private String rectifyDesc;
|
/**
|
* 隐患Id
|
*/
|
private Long dangerManagerId;
|
/**
|
* 隐患uuId
|
*/
|
private String dangerManagerUuid;
|
/**
|
* 整改资金
|
*/
|
private BigDecimal cost;
|
/**
|
* 申请验收时间
|
*/
|
private Date applyTime;
|
/**
|
* 整改部门
|
*/
|
private Long rectifyDepId;
|
/**
|
* 修改人
|
*/
|
private String lastEditUserName;
|
/**
|
* 最后修改时间
|
*/
|
private Date gmtModitify;
|
/**
|
* 同步数据修改时间
|
*/
|
private Date updateReportDataTime;
|
/**
|
* 同步状态
|
*/
|
private Byte reportStatus;
|
/**
|
* 延期原因
|
*/
|
private String timeOutDesc;
|
|
|
public Date getApplyTime() {
|
return applyTime;
|
}
|
|
public void setApplyTime(Date applyTime) {
|
this.applyTime = applyTime;
|
}
|
|
|
public Long getRectifyDepId() {
|
return rectifyDepId;
|
}
|
|
public void setRectifyDepId(Long rectifyDepId) {
|
this.rectifyDepId = rectifyDepId;
|
}
|
|
public String getTimeOutDesc() {
|
return timeOutDesc;
|
}
|
|
public void setTimeOutDesc(String timeOutDesc) {
|
this.timeOutDesc = timeOutDesc;
|
}
|
|
public Byte getReportStatus() {
|
return reportStatus;
|
}
|
|
public void setReportStatus(Byte reportStatus) {
|
this.reportStatus = reportStatus;
|
}
|
|
public BigDecimal getCost() {
|
return cost;
|
}
|
|
public void setCost(BigDecimal cost) {
|
this.cost = cost;
|
}
|
|
public Date getUpdateReportDataTime() {
|
return updateReportDataTime;
|
}
|
|
public void setUpdateReportDataTime(Date updateReportDataTime) {
|
this.updateReportDataTime = updateReportDataTime;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Byte getRectifyType() {
|
return rectifyType;
|
}
|
|
public void setRectifyType(Byte rectifyType) {
|
this.rectifyType = rectifyType;
|
}
|
|
public Date getRectifyTime() {
|
return rectifyTime;
|
}
|
|
public void setRectifyTime(Date rectifyTime) {
|
this.rectifyTime = rectifyTime;
|
}
|
|
public Long getLiablePersonId() {
|
return liablePersonId;
|
}
|
|
public void setLiablePersonId(Long liablePersonId) {
|
this.liablePersonId = liablePersonId;
|
}
|
|
public String getLiablePerson() {
|
return liablePerson;
|
}
|
|
public void setLiablePerson(String liablePerson) {
|
this.liablePerson = liablePerson;
|
}
|
|
public String getRectifyDesc() {
|
return rectifyDesc;
|
}
|
|
public void setRectifyDesc(String rectifyDesc) {
|
this.rectifyDesc = rectifyDesc;
|
}
|
|
public Long getDangerManagerId() {
|
return dangerManagerId;
|
}
|
|
public void setDangerManagerId(Long dangerManagerId) {
|
this.dangerManagerId = dangerManagerId;
|
}
|
|
public String getDangerManagerUuid() {
|
return dangerManagerUuid;
|
}
|
|
public void setDangerManagerUuid(String dangerManagerUuid) {
|
this.dangerManagerUuid = dangerManagerUuid;
|
}
|
|
public Date getGmtModitify() {
|
return gmtModitify;
|
}
|
|
public void setGmtModitify(Date gmtModitify) {
|
this.gmtModitify = gmtModitify;
|
}
|
|
public String getLastEditUserName() {
|
return lastEditUserName;
|
}
|
|
public void setLastEditUserName(String lastEditUserName) {
|
this.lastEditUserName = lastEditUserName;
|
}
|
}
|