package cn.com.goldenwater.dcproj.model; import cn.com.goldenwater.core.model.BaseBean; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; import java.util.Date; /** * entity:TacPblmRectOrg * * @author lhc * @date 2019-12-24 */ @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"}) public class TacPblmRectOrg extends BaseBean implements Serializable { // 通知附件id @ApiModelProperty(value = "通知附件id", name = "fileId") private String fileId; // 通知附件名称 @ApiModelProperty(value = "通知附件名称", name = "fileName") private String fileName; // 通知附件路径 @ApiModelProperty(value = "通知附件路径", name = "filePath") private String filePath; // 反馈通知附件id @ApiModelProperty(value = "反馈通知附件id", name = "rectFileId") private String rectFileId; // 反馈通知附件名称 @ApiModelProperty(value = "反馈通知附件名称", name = "rectFileName") private String rectFileName; // 反馈通知附件路径 @ApiModelProperty(value = "反馈通知附件路径", name = "rectFilePath") private String rectFilePath; // 通知名称 @ApiModelProperty(value = "通知名称", name = "title") private String title; // 通知文号 @ApiModelProperty(value = "通知文号", name = "nub") private String nub; // 整改说明 @ApiModelProperty(value = "整改说明", name = "explain") private String explain; // 通知印发时间 @ApiModelProperty(value = "通知印发时间", name = "printTm") private Date printTm; // 整改截止期限 @ApiModelProperty(value = "整改截止期限", name = "closeTm") private Date closeTm; // 批次通知附件id @ApiModelProperty(value = "批次通知附件id", name = "sndFileId") private String sndFileId; // 批次通知附件名称 @ApiModelProperty(value = "批次通知附件名称", name = "sndFileName") private String sndFileName; // 批次通知附件路径 @ApiModelProperty(value = "批次通知附件路径", name = "sndFilePath") private String sndFilePath; // 主键ID @ApiModelProperty(value = "主键ID", name = "id") private String id; // 建安中心通知ID @ApiModelProperty(value = "建安中心通知ID", name = "rectId") private String rectId; // 年度 @ApiModelProperty(value = "年度", name = "year") private Long year; // 批次 @ApiModelProperty(value = "批次", name = "batch") private Long batch; // 接收单位ID @ApiModelProperty(value = "接收单位ID", name = "rectOrgId") private String rectOrgId; // 接收单位名称 @ApiModelProperty(value = "接收单位名称", name = "rectOrgNm") private String rectOrgNm; // 工程总数 @ApiModelProperty(value = "工程总数", name = "prjctSize") private Long prjctSize; // 问题总数 @ApiModelProperty(value = "问题总数", name = "pblmSize") private Long pblmSize; // 状态 0未下发 1 已下发 2 已反馈 @ApiModelProperty(value = "状态 0未下发 1 已下发 2 已反馈", name = "state") private String state; // 反馈时间 @ApiModelProperty(value = "反馈时间", name = "rectTm") private Date rectTm; // 反馈文号 @ApiModelProperty(value = "反馈文号", name = "rectNub") private String rectNub; // 审核状态 0 未审核 1 归档 @ApiModelProperty(value = "审核状态 0 未审核 1 归档", name = "chkState") private String chkState; // 被稽察单位联系人 @ApiModelProperty(value = "被稽察单位联系人", name = "chkPersInfo") private String chkPersInfo; // 地方问责情况 @ApiModelProperty(value = "地方问责情况", name = "placeDuty") private String placeDuty; // 反馈人员ID @ApiModelProperty(value = "反馈人员ID", name = "rectPersId") private String rectPersId; // 反馈人员姓名 @ApiModelProperty(value = "反馈人员姓名", name = "rectPersName") private String rectPersName; // 责任追究决定 @ApiModelProperty(value = "责任追究决定", name = "dutyTrace") private String dutyTrace; // 创建人员id @ApiModelProperty(value = "创建人员id", name = "persId") private String persId; // 创建人员姓名 @ApiModelProperty(value = "创建人员姓名", name = "persName") private String persName; // 创建时间 @ApiModelProperty(value = "创建时间", name = "intm") private Date intm; // 最后修改时间 @ApiModelProperty(value = "最后修改时间", name = "uptm") private Date uptm; // 数据状态(0:正常;9:删除) @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat") private String dataStat; @ApiModelProperty(value = "是否上传附件 0 未上传 1 上传", name = "fileState") private String fileState; public TacPblmRectOrg() { } public String getFileId() { return fileId; } public void setFileId(String fileId) { this.fileId = fileId; } public String getFileName() { return fileName; } public void setFileName(String fileName) { this.fileName = fileName; } public String getFilePath() { return filePath; } public void setFilePath(String filePath) { this.filePath = filePath; } public String getRectFileId() { return rectFileId; } public void setRectFileId(String rectFileId) { this.rectFileId = rectFileId; } public String getRectFileName() { return rectFileName; } public void setRectFileName(String rectFileName) { this.rectFileName = rectFileName; } public String getRectFilePath() { return rectFilePath; } public void setRectFilePath(String rectFilePath) { this.rectFilePath = rectFilePath; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getNub() { return nub; } public void setNub(String nub) { this.nub = nub; } public String getExplain() { return explain; } public void setExplain(String explain) { this.explain = explain; } public Date getPrintTm() { return printTm; } public void setPrintTm(Date printTm) { this.printTm = printTm; } public Date getCloseTm() { return closeTm; } public void setCloseTm(Date closeTm) { this.closeTm = closeTm; } public String getSndFileId() { return sndFileId; } public void setSndFileId(String sndFileId) { this.sndFileId = sndFileId; } public String getSndFileName() { return sndFileName; } public void setSndFileName(String sndFileName) { this.sndFileName = sndFileName; } public String getSndFilePath() { return sndFilePath; } public void setSndFilePath(String sndFilePath) { this.sndFilePath = sndFilePath; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getRectId() { return rectId; } public void setRectId(String rectId) { this.rectId = rectId; } public Long getYear() { return year; } public void setYear(Long year) { this.year = year; } public Long getBatch() { return batch; } public void setBatch(Long batch) { this.batch = batch; } public String getRectOrgId() { return rectOrgId; } public void setRectOrgId(String rectOrgId) { this.rectOrgId = rectOrgId; } public String getRectOrgNm() { return rectOrgNm; } public void setRectOrgNm(String rectOrgNm) { this.rectOrgNm = rectOrgNm; } public Long getPrjctSize() { return prjctSize; } public void setPrjctSize(Long prjctSize) { this.prjctSize = prjctSize; } public Long getPblmSize() { return pblmSize; } public void setPblmSize(Long pblmSize) { this.pblmSize = pblmSize; } public String getState() { return state; } public void setState(String state) { this.state = state; } public Date getRectTm() { return rectTm; } public void setRectTm(Date rectTm) { this.rectTm = rectTm; } public String getRectNub() { return rectNub; } public void setRectNub(String rectNub) { this.rectNub = rectNub; } public String getChkState() { return chkState; } public void setChkState(String chkState) { this.chkState = chkState; } public String getChkPersInfo() { return chkPersInfo; } public void setChkPersInfo(String chkPersInfo) { this.chkPersInfo = chkPersInfo; } public String getPlaceDuty() { return placeDuty; } public void setPlaceDuty(String placeDuty) { this.placeDuty = placeDuty; } public String getRectPersId() { return rectPersId; } public void setRectPersId(String rectPersId) { this.rectPersId = rectPersId; } public String getRectPersName() { return rectPersName; } public void setRectPersName(String rectPersName) { this.rectPersName = rectPersName; } public String getDutyTrace() { return dutyTrace; } public void setDutyTrace(String dutyTrace) { this.dutyTrace = dutyTrace; } public String getPersId() { return persId; } public void setPersId(String persId) { this.persId = persId; } public String getPersName() { return persName; } public void setPersName(String persName) { this.persName = persName; } public Date getIntm() { return intm; } public void setIntm(Date intm) { this.intm = intm; } public Date getUptm() { return uptm; } public void setUptm(Date uptm) { this.uptm = uptm; } public String getDataStat() { return dataStat; } public void setDataStat(String dataStat) { this.dataStat = dataStat; } public String getFileState() { return fileState; } public void setFileState(String fileState) { this.fileState = fileState; } @Override public String toString() { return "TacPblmRectOrg [" + "fileId=" + fileId + ", fileName=" + fileName + ", filePath=" + filePath + ", rectFileId=" + rectFileId + ", rectFileName=" + rectFileName + ", rectFilePath=" + rectFilePath + ", title=" + title + ", nub=" + nub + ", explain=" + explain + ", printTm=" + printTm + ", closeTm=" + closeTm + ", sndFileId=" + sndFileId + ", sndFileName=" + sndFileName + ", sndFilePath=" + sndFilePath + ", id=" + id + ", rectId=" + rectId + ", year=" + year + ", batch=" + batch + ", rectOrgId=" + rectOrgId + ", rectOrgNm=" + rectOrgNm + ", prjctSize=" + prjctSize + ", pblmSize=" + pblmSize + ", state=" + state + ", rectTm=" + rectTm + ", rectNub=" + rectNub + ", chkState=" + chkState + ", chkPersInfo=" + chkPersInfo + ", placeDuty=" + placeDuty + ", rectPersId=" + rectPersId + ", rectPersName=" + rectPersName + ", dutyTrace=" + dutyTrace + ", persId=" + persId + ", persName=" + persName + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]"; } }