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:TacPblmRect * * @author lhc * @date 2019-12-21 */ @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"}) public class TacPblmRect extends BaseBean implements Serializable { // 主键ID @ApiModelProperty(value = "主键ID", name = "id") private String id; // 年度 @ApiModelProperty(value = "年度", name = "year") private Long year; // 批次 @ApiModelProperty(value = "批次", name = "batch") private Long batch; // 通知名称 @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; // 发送单位总数 @ApiModelProperty(value = "发送单位总数", name = "sndOrgSize") private Long sndOrgSize; // 工程总数 @ApiModelProperty(value = "工程总数", name = "prjctSize") private Long prjctSize; // 问题总数 @ApiModelProperty(value = "问题总数", name = "pblmSize") private Long pblmSize; // 创建人员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 = "附件ID", name = "fileId") private String fileId; @ApiModelProperty(value = "附件名称", name = "fileName") private String fileName; @ApiModelProperty(value = "附件路径", name = "filePath") private String filePath; @ApiModelProperty(value = "是否已全部下发", name = "sendAll") private String sendAll; public TacPblmRect() { } public String getId() { return id; } public void setId(String id) { this.id = id; } 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 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 Long getSndOrgSize() { return sndOrgSize; } public void setSndOrgSize(Long sndOrgSize) { this.sndOrgSize = sndOrgSize; } 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 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 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 getSendAll() { return sendAll; } public void setSendAll(String sendAll) { this.sendAll = sendAll; } @Override public String toString() { return "TacPblmRect [" + "id=" + id + ", year=" + year + ", batch=" + batch + ", title=" + title + ", nub=" + nub + ", explain=" + explain + ", printTm=" + printTm + ", closeTm=" + closeTm + ", sndOrgSize=" + sndOrgSize + ", prjctSize=" + prjctSize + ", pblmSize=" + pblmSize + ", persId=" + persId + ", persName=" + persName + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]"; } }