package com.gkhy.safePlatform.doublePrevention.entity.dto.req; import com.fasterxml.jackson.annotation.JsonFormat; import java.util.Date; public class PreventDangerReportRectifyReqDTO { /** * 主键 */ private Long id; /** * 主键 */ private Long dangerManagerId; /** * 验收人ID */ private Long checkAcceptPersonId; /** * 施工单位 */ private String constructionUnit; /** * 验收情况说明 */ private String checkAcceptDesc; /** * 整改情况说明 */ private String rectifyInfo; /** * 整改时间 */ @JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd HH:mm:ss") private Date applyTime; public Date getApplyTime() { return applyTime; } public void setApplyTime(Date applyTime) { this.applyTime = applyTime; } public String getRectifyInfo() { return rectifyInfo; } public void setRectifyInfo(String rectifyInfo) { this.rectifyInfo = rectifyInfo; } public Long getDangerManagerId() { return dangerManagerId; } public void setDangerManagerId(Long dangerManagerId) { this.dangerManagerId = dangerManagerId; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Long getCheckAcceptPersonId() { return checkAcceptPersonId; } public void setCheckAcceptPersonId(Long checkAcceptPersonId) { this.checkAcceptPersonId = checkAcceptPersonId; } public String getConstructionUnit() { return constructionUnit; } public void setConstructionUnit(String constructionUnit) { this.constructionUnit = constructionUnit; } public String getCheckAcceptDesc() { return checkAcceptDesc; } public void setCheckAcceptDesc(String checkAcceptDesc) { this.checkAcceptDesc = checkAcceptDesc; } }