51b0732ab0e9c61e8f6d4b2c05404fb972d81386.svn-base 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import io.swagger.annotations.ApiParam;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * TacPblmRectPrctParam
  9. *
  10. * @author lhc
  11. * @date 2019-12-21
  12. */
  13. public class TacPblmRectPrctParam extends PageParam implements Serializable {
  14. // 年度
  15. @ApiParam(name = "年度")
  16. @ApiModelProperty(value = "年度", name = "year")
  17. private Long year;
  18. // 批次
  19. @ApiParam(name = "批次")
  20. @ApiModelProperty(value = "批次", name = "batch")
  21. private Long batch;
  22. // 单位ID
  23. @ApiParam(name = "单位ID")
  24. @ApiModelProperty(value = "单位ID", name = "orgId")
  25. private String orgId;
  26. // 单位名称
  27. @ApiParam(name = "单位名称")
  28. @ApiModelProperty(value = "单位名称", name = "orgNm")
  29. private String orgNm;
  30. // 主键ID
  31. @ApiParam(name = "主键ID")
  32. @ApiModelProperty(value = "主键ID", name = "id")
  33. private String id;
  34. // 稽察通知一省一单ID
  35. @ApiParam(name = "稽察通知一省一单ID")
  36. @ApiModelProperty(value = "稽察通知一省一单ID", name = "rectOrgId")
  37. private String rectOrgId;
  38. // 登记表ID
  39. @ApiParam(name = "登记表ID")
  40. @ApiModelProperty(value = "登记表ID", name = "rgstrId")
  41. private String rgstrId;
  42. // 项目名称
  43. @ApiParam(name = "项目名称")
  44. @ApiModelProperty(value = "项目名称", name = "name")
  45. private String name;
  46. // 反馈情况
  47. @ApiParam(name = "反馈情况")
  48. @ApiModelProperty(value = "反馈情况", name = "feedBack")
  49. private String feedBack;
  50. // 省厅反馈人员ID
  51. @ApiParam(name = "省厅反馈人员ID")
  52. @ApiModelProperty(value = "省厅反馈人员ID", name = "rectPersId")
  53. private String rectPersId;
  54. // 省厅反馈人员姓名
  55. @ApiParam(name = "省厅反馈人员姓名")
  56. @ApiModelProperty(value = "省厅反馈人员姓名", name = "rectPersName")
  57. private String rectPersName;
  58. // 创建人员id
  59. @ApiParam(name = "创建人员id")
  60. @ApiModelProperty(value = "创建人员id", name = "persId")
  61. private String persId;
  62. // 创建人员姓名
  63. @ApiParam(name = "创建人员姓名")
  64. @ApiModelProperty(value = "创建人员姓名", name = "persName")
  65. private String persName;
  66. // 创建时间
  67. @ApiParam(name = "创建时间")
  68. @ApiModelProperty(value = "创建时间", name = "intm")
  69. private Date intm;
  70. // 最后修改时间
  71. @ApiParam(name = "最后修改时间")
  72. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  73. private Date uptm;
  74. // 数据状态(0:正常;9:删除)
  75. @ApiParam(name = "数据状态(0:正常;9:删除)")
  76. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  77. private String dataStat;
  78. // 建安中心通知ID
  79. @ApiParam(name = "建安中心通知ID")
  80. @ApiModelProperty(value = "建安中心通知ID", name = "rectId")
  81. private String rectId;
  82. public TacPblmRectPrctParam() {
  83. }
  84. public Long getYear() {
  85. return year;
  86. }
  87. public void setYear(Long year) {
  88. this.year = year;
  89. }
  90. public Long getBatch() {
  91. return batch;
  92. }
  93. public void setBatch(Long batch) {
  94. this.batch = batch;
  95. }
  96. @Override
  97. public String getOrgId() {
  98. return orgId;
  99. }
  100. @Override
  101. public void setOrgId(String orgId) {
  102. this.orgId = orgId;
  103. }
  104. public String getOrgNm() {
  105. return orgNm;
  106. }
  107. public void setOrgNm(String orgNm) {
  108. this.orgNm = orgNm;
  109. }
  110. public String getId() {
  111. return id;
  112. }
  113. public void setId(String id) {
  114. this.id = id;
  115. }
  116. public String getRectOrgId() {
  117. return rectOrgId;
  118. }
  119. public void setRectOrgId(String rectOrgId) {
  120. this.rectOrgId = rectOrgId;
  121. }
  122. public String getRgstrId() {
  123. return rgstrId;
  124. }
  125. public void setRgstrId(String rgstrId) {
  126. this.rgstrId = rgstrId;
  127. }
  128. public String getName() {
  129. return name;
  130. }
  131. public void setName(String name) {
  132. this.name = name;
  133. }
  134. public String getFeedBack() {
  135. return feedBack;
  136. }
  137. public void setFeedBack(String feedBack) {
  138. this.feedBack = feedBack;
  139. }
  140. public String getRectPersId() {
  141. return rectPersId;
  142. }
  143. public void setRectPersId(String rectPersId) {
  144. this.rectPersId = rectPersId;
  145. }
  146. public String getRectPersName() {
  147. return rectPersName;
  148. }
  149. public void setRectPersName(String rectPersName) {
  150. this.rectPersName = rectPersName;
  151. }
  152. public String getPersId() {
  153. return persId;
  154. }
  155. public void setPersId(String persId) {
  156. this.persId = persId;
  157. }
  158. public String getPersName() {
  159. return persName;
  160. }
  161. public void setPersName(String persName) {
  162. this.persName = persName;
  163. }
  164. public Date getIntm() {
  165. return intm;
  166. }
  167. public void setIntm(Date intm) {
  168. this.intm = intm;
  169. }
  170. public Date getUptm() {
  171. return uptm;
  172. }
  173. public void setUptm(Date uptm) {
  174. this.uptm = uptm;
  175. }
  176. public String getDataStat() {
  177. return dataStat;
  178. }
  179. public void setDataStat(String dataStat) {
  180. this.dataStat = dataStat;
  181. }
  182. public String getRectId() {
  183. return rectId;
  184. }
  185. public void setRectId(String rectId) {
  186. this.rectId = rectId;
  187. }
  188. }