package com.gk.hotwork.doublePrevention.entity.dto.req;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import java.util.Date;
|
|
public class PreventDangerRectifySaveReqDTO {
|
|
/**
|
* 隐患管理单Id
|
*/
|
private Long dangerManagerId;
|
/**
|
* 整改期限
|
*/
|
@JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd HH:mm:ss")
|
private Date rectifyTime;
|
/**
|
* 整改责任人
|
*/
|
private Long liablePersonId;
|
/**
|
* 整改类型:1-即查即改,2-限期整改
|
*/
|
private Byte rectifyType;
|
/**
|
* 整改内容说明
|
*/
|
private String rectifyDesc;
|
|
public Byte getRectifyType() {
|
return rectifyType;
|
}
|
|
public void setRectifyType(Byte rectifyType) {
|
this.rectifyType = rectifyType;
|
}
|
|
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 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;
|
}
|
}
|