789ffbf2663280391412ad1d488c6be77f6c9d2d.svn-base 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * entity:TacPblmRect
  9. *
  10. * @author lhc
  11. * @date 2019-12-21
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class TacPblmRect extends BaseBean implements Serializable {
  15. // 主键ID
  16. @ApiModelProperty(value = "主键ID", name = "id")
  17. private String id;
  18. // 年度
  19. @ApiModelProperty(value = "年度", name = "year")
  20. private Long year;
  21. // 批次
  22. @ApiModelProperty(value = "批次", name = "batch")
  23. private Long batch;
  24. // 通知名称
  25. @ApiModelProperty(value = "通知名称", name = "title")
  26. private String title;
  27. // 通知文号
  28. @ApiModelProperty(value = "通知文号", name = "nub")
  29. private String nub;
  30. // 整改说明
  31. @ApiModelProperty(value = "整改说明", name = "explain")
  32. private String explain;
  33. // 通知印发时间
  34. @ApiModelProperty(value = "通知印发时间", name = "printTm")
  35. private Date printTm;
  36. // 整改截止期限
  37. @ApiModelProperty(value = "整改截止期限", name = "closeTm")
  38. private Date closeTm;
  39. // 发送单位总数
  40. @ApiModelProperty(value = "发送单位总数", name = "sndOrgSize")
  41. private Long sndOrgSize;
  42. // 工程总数
  43. @ApiModelProperty(value = "工程总数", name = "prjctSize")
  44. private Long prjctSize;
  45. // 问题总数
  46. @ApiModelProperty(value = "问题总数", name = "pblmSize")
  47. private Long pblmSize;
  48. // 创建人员id
  49. @ApiModelProperty(value = "创建人员id", name = "persId")
  50. private String persId;
  51. // 创建人员姓名
  52. @ApiModelProperty(value = "创建人员姓名", name = "persName")
  53. private String persName;
  54. // 创建时间
  55. @ApiModelProperty(value = "创建时间", name = "intm")
  56. private Date intm;
  57. // 最后修改时间
  58. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  59. private Date uptm;
  60. // 数据状态(0:正常;9:删除)
  61. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  62. private String dataStat;
  63. @ApiModelProperty(value = "附件ID", name = "fileId")
  64. private String fileId;
  65. @ApiModelProperty(value = "附件名称", name = "fileName")
  66. private String fileName;
  67. @ApiModelProperty(value = "附件路径", name = "filePath")
  68. private String filePath;
  69. @ApiModelProperty(value = "是否已全部下发", name = "sendAll")
  70. private String sendAll;
  71. public TacPblmRect() {
  72. }
  73. public String getId() {
  74. return id;
  75. }
  76. public void setId(String id) {
  77. this.id = id;
  78. }
  79. public Long getYear() {
  80. return year;
  81. }
  82. public void setYear(Long year) {
  83. this.year = year;
  84. }
  85. public Long getBatch() {
  86. return batch;
  87. }
  88. public void setBatch(Long batch) {
  89. this.batch = batch;
  90. }
  91. public String getTitle() {
  92. return title;
  93. }
  94. public void setTitle(String title) {
  95. this.title = title;
  96. }
  97. public String getNub() {
  98. return nub;
  99. }
  100. public void setNub(String nub) {
  101. this.nub = nub;
  102. }
  103. public String getExplain() {
  104. return explain;
  105. }
  106. public void setExplain(String explain) {
  107. this.explain = explain;
  108. }
  109. public Date getPrintTm() {
  110. return printTm;
  111. }
  112. public void setPrintTm(Date printTm) {
  113. this.printTm = printTm;
  114. }
  115. public Date getCloseTm() {
  116. return closeTm;
  117. }
  118. public void setCloseTm(Date closeTm) {
  119. this.closeTm = closeTm;
  120. }
  121. public Long getSndOrgSize() {
  122. return sndOrgSize;
  123. }
  124. public void setSndOrgSize(Long sndOrgSize) {
  125. this.sndOrgSize = sndOrgSize;
  126. }
  127. public Long getPrjctSize() {
  128. return prjctSize;
  129. }
  130. public void setPrjctSize(Long prjctSize) {
  131. this.prjctSize = prjctSize;
  132. }
  133. public Long getPblmSize() {
  134. return pblmSize;
  135. }
  136. public void setPblmSize(Long pblmSize) {
  137. this.pblmSize = pblmSize;
  138. }
  139. public String getPersId() {
  140. return persId;
  141. }
  142. public void setPersId(String persId) {
  143. this.persId = persId;
  144. }
  145. public String getPersName() {
  146. return persName;
  147. }
  148. public void setPersName(String persName) {
  149. this.persName = persName;
  150. }
  151. public Date getIntm() {
  152. return intm;
  153. }
  154. public void setIntm(Date intm) {
  155. this.intm = intm;
  156. }
  157. public Date getUptm() {
  158. return uptm;
  159. }
  160. public void setUptm(Date uptm) {
  161. this.uptm = uptm;
  162. }
  163. public String getDataStat() {
  164. return dataStat;
  165. }
  166. public void setDataStat(String dataStat) {
  167. this.dataStat = dataStat;
  168. }
  169. public String getFileId() {
  170. return fileId;
  171. }
  172. public void setFileId(String fileId) {
  173. this.fileId = fileId;
  174. }
  175. public String getFileName() {
  176. return fileName;
  177. }
  178. public void setFileName(String fileName) {
  179. this.fileName = fileName;
  180. }
  181. public String getFilePath() {
  182. return filePath;
  183. }
  184. public void setFilePath(String filePath) {
  185. this.filePath = filePath;
  186. }
  187. public String getSendAll() {
  188. return sendAll;
  189. }
  190. public void setSendAll(String sendAll) {
  191. this.sendAll = sendAll;
  192. }
  193. @Override
  194. public String toString() {
  195. 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 + "]";
  196. }
  197. }