| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- 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 + "]";
- }
- }
|