b72953bb3edf8b77ea4dd54e22e769c597862653.svn-base 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  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:TacPblmRectPrct
  9. *
  10. * @author lhc
  11. * @date 2019-12-21
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class TacPblmRectPrct extends BaseBean implements Serializable {
  15. // 年度
  16. @ApiModelProperty(value = "年度", name = "year")
  17. private Long year;
  18. // 批次
  19. @ApiModelProperty(value = "批次", name = "batch")
  20. private Long batch;
  21. // 单位ID
  22. @ApiModelProperty(value = "单位ID", name = "orgId")
  23. private String orgId;
  24. // 单位名称
  25. @ApiModelProperty(value = "单位名称", name = "orgNm")
  26. private String orgNm;
  27. // 主键ID
  28. @ApiModelProperty(value = "主键ID", name = "id")
  29. private String id;
  30. // 稽察通知一省一单ID
  31. @ApiModelProperty(value = "稽察通知一省一单ID", name = "rectOrgId")
  32. private String rectOrgId;
  33. // 登记表ID
  34. @ApiModelProperty(value = "登记表ID", name = "rgstrId")
  35. private String rgstrId;
  36. // 项目名称
  37. @ApiModelProperty(value = "项目名称", name = "name")
  38. private String name;
  39. // 反馈情况
  40. @ApiModelProperty(value = "反馈情况", name = "feedBack")
  41. private String feedBack;
  42. // 省厅反馈人员ID
  43. @ApiModelProperty(value = "省厅反馈人员ID", name = "rectPersId")
  44. private String rectPersId;
  45. // 省厅反馈人员姓名
  46. @ApiModelProperty(value = "省厅反馈人员姓名", name = "rectPersName")
  47. private String rectPersName;
  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. // 建安中心通知ID
  64. @ApiModelProperty(value = "建安中心通知ID", name = "rectId")
  65. private String rectId;
  66. public TacPblmRectPrct() {
  67. }
  68. public Long getYear() {
  69. return year;
  70. }
  71. public void setYear(Long year) {
  72. this.year = year;
  73. }
  74. public Long getBatch() {
  75. return batch;
  76. }
  77. public void setBatch(Long batch) {
  78. this.batch = batch;
  79. }
  80. @Override
  81. public String getOrgId() {
  82. return orgId;
  83. }
  84. @Override
  85. public void setOrgId(String orgId) {
  86. this.orgId = orgId;
  87. }
  88. public String getOrgNm() {
  89. return orgNm;
  90. }
  91. public void setOrgNm(String orgNm) {
  92. this.orgNm = orgNm;
  93. }
  94. public String getId() {
  95. return id;
  96. }
  97. public void setId(String id) {
  98. this.id = id;
  99. }
  100. public String getRectOrgId() {
  101. return rectOrgId;
  102. }
  103. public void setRectOrgId(String rectOrgId) {
  104. this.rectOrgId = rectOrgId;
  105. }
  106. @Override
  107. public String getRgstrId() {
  108. return rgstrId;
  109. }
  110. @Override
  111. public void setRgstrId(String rgstrId) {
  112. this.rgstrId = rgstrId;
  113. }
  114. public String getName() {
  115. return name;
  116. }
  117. public void setName(String name) {
  118. this.name = name;
  119. }
  120. public String getFeedBack() {
  121. return feedBack;
  122. }
  123. public void setFeedBack(String feedBack) {
  124. this.feedBack = feedBack;
  125. }
  126. public String getRectPersId() {
  127. return rectPersId;
  128. }
  129. public void setRectPersId(String rectPersId) {
  130. this.rectPersId = rectPersId;
  131. }
  132. public String getRectPersName() {
  133. return rectPersName;
  134. }
  135. public void setRectPersName(String rectPersName) {
  136. this.rectPersName = rectPersName;
  137. }
  138. public String getPersId() {
  139. return persId;
  140. }
  141. public void setPersId(String persId) {
  142. this.persId = persId;
  143. }
  144. public String getPersName() {
  145. return persName;
  146. }
  147. public void setPersName(String persName) {
  148. this.persName = persName;
  149. }
  150. public Date getIntm() {
  151. return intm;
  152. }
  153. public void setIntm(Date intm) {
  154. this.intm = intm;
  155. }
  156. public Date getUptm() {
  157. return uptm;
  158. }
  159. public void setUptm(Date uptm) {
  160. this.uptm = uptm;
  161. }
  162. public String getDataStat() {
  163. return dataStat;
  164. }
  165. public void setDataStat(String dataStat) {
  166. this.dataStat = dataStat;
  167. }
  168. public String getRectId() {
  169. return rectId;
  170. }
  171. public void setRectId(String rectId) {
  172. this.rectId = rectId;
  173. }
  174. @Override
  175. public String toString() {
  176. return "TacPblmRectPrct [" + "year=" + year + ", batch=" + batch + ", orgId=" + orgId + ", orgNm=" + orgNm + ", id=" + id + ", rectOrgId=" + rectOrgId + ", rgstrId=" + rgstrId + ", name=" + name + ", feedBack=" + feedBack + ", rectPersId=" + rectPersId + ", rectPersName=" + rectPersName + ", persId=" + persId + ", persName=" + persName + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + ", rectId=" + rectId + "]";
  177. }
  178. }