package com.gkhy.safePlatform.doublePrevention.entity.dto.req; import com.fasterxml.jackson.annotation.JsonFormat; import java.math.BigDecimal; import java.util.Date; public class PreventDangerRectifyUpdateReqDTO { /** * 主键 */ private Long id; /** * 隐患管理单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; /** * 整改资金 */ private BigDecimal cost; /** * 延期原因 */ private String timeOutDesc; public String getTimeOutDesc() { return timeOutDesc; } public void setTimeOutDesc(String timeOutDesc) { this.timeOutDesc = timeOutDesc; } public BigDecimal getCost() { return cost; } public void setCost(BigDecimal cost) { this.cost = cost; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } 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; } 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; } }