6d2c42a837921f20fe74dde6cf70f04190232ff5.svn-base 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import java.util.Date;
  5. import java.io.Serializable;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * BisInspHystRectInfoParam
  9. *
  10. * @author lune
  11. * @date 2021-3-2
  12. */
  13. public class BisInspHystRectInfoParam extends PageParam implements Serializable {
  14. @ApiModelProperty(value="主键ID", position = 1)
  15. private String id;
  16. @ApiModelProperty(value="登记表ID", position = 2)
  17. private String rgstrId;
  18. @ApiModelProperty(value="有无生态流量核定文件(1:有;2:无;)", position = 3)
  19. private String isHasEfvd;
  20. @ApiModelProperty(value="是否有生态流量泄放设施(1:有;2:无;)", position = 4)
  21. private String isHasEdf;
  22. @ApiModelProperty(value="生态流量泄放设施与“一站一策”方案是否一致(1:一致;2:不一致;)", position = 5)
  23. private String edfIsWiicwtosopp;
  24. @ApiModelProperty(value="生态流量泄放设施类型(1:泄流孔;2:泄流阀;3:泄流闸;4:虹吸管;5:生态机组;6:其他)", position = 6)
  25. private String edfType;
  26. @ApiModelProperty(value="生态流量泄放设施其他类型", position = 7)
  27. private String edfTypeOther;
  28. @ApiModelProperty(value="生态流量泄放设施(1:要求有而实际没有;2:没有要求;)", position = 8)
  29. private String edfIsHas;
  30. @ApiModelProperty(value="是否按规定泄放生态流量(1:是;2:否;)", position = 9)
  31. private String isRuleDef;
  32. @ApiModelProperty(value="有节制泄流,是否有流量监测设施(1:是;2:否;)", position = 10)
  33. private String isHasFmf;
  34. @ApiModelProperty(value="无节制泄流,是否有视频或流量监测设施", position = 11)
  35. private String isHasVotmf;
  36. @ApiModelProperty(value="生态流量监测设施类型", position = 12)
  37. private String efmfType;
  38. @ApiModelProperty(value="生态流量监测设施与“一站一策”方案是否一致", position = 13)
  39. private String efmfIsWiicwtosopp;
  40. @ApiModelProperty(value="监测数据是否接入平台", position = 14)
  41. private String mdataIsAttp;
  42. @ApiModelProperty(value="是否持续正常运行", position = 15)
  43. private String isRun;
  44. @ApiModelProperty(value="立项审批(核准)手续是否完善", position = 16)
  45. private String paapIsPfct;
  46. @ApiModelProperty(value="环评手续是否完善", position = 17)
  47. private String tepIsPfct;
  48. @ApiModelProperty(value="水资源论证(取水许可)手续是否完善", position = 18)
  49. private String wrcwlpIsPfct;
  50. @ApiModelProperty(value="土地预审手续是否完善", position = 19)
  51. private String lpepIsPfct;
  52. @ApiModelProperty(value="林地征(占、租)用手续是否完善", position = 20)
  53. private String feolpIsPfct;
  54. @ApiModelProperty(value="竣工验收手续是否完善", position = 21)
  55. private String capIsPfct;
  56. @ApiModelProperty(value="备注", position = 22)
  57. private String note;
  58. @ApiModelProperty(value="填报状态(0:未填报;1:填报中;2:已填报)", position = 23)
  59. private String status;
  60. @ApiModelProperty(value="记录人员ID", position = 24)
  61. private String persId;
  62. @ApiModelProperty(value="创建时间", position = 25)
  63. private Date intm;
  64. @ApiModelProperty(value="最后修改时间", position = 26)
  65. private Date uptm;
  66. public BisInspHystRectInfoParam() {
  67. }
  68. public String getId() {
  69. return id;
  70. }
  71. public void setId(String id) {
  72. this.id = id;
  73. }
  74. public String getRgstrId() {
  75. return rgstrId;
  76. }
  77. public void setRgstrId(String rgstrId) {
  78. this.rgstrId = rgstrId;
  79. }
  80. public String getIsHasEfvd() {
  81. return isHasEfvd;
  82. }
  83. public void setIsHasEfvd(String isHasEfvd) {
  84. this.isHasEfvd = isHasEfvd;
  85. }
  86. public String getIsHasEdf() {
  87. return isHasEdf;
  88. }
  89. public void setIsHasEdf(String isHasEdf) {
  90. this.isHasEdf = isHasEdf;
  91. }
  92. public String getEdfIsWiicwtosopp() {
  93. return edfIsWiicwtosopp;
  94. }
  95. public void setEdfIsWiicwtosopp(String edfIsWiicwtosopp) {
  96. this.edfIsWiicwtosopp = edfIsWiicwtosopp;
  97. }
  98. public String getEdfType() {
  99. return edfType;
  100. }
  101. public void setEdfType(String edfType) {
  102. this.edfType = edfType;
  103. }
  104. public String getEdfTypeOther() {
  105. return edfTypeOther;
  106. }
  107. public void setEdfTypeOther(String edfTypeOther) {
  108. this.edfTypeOther = edfTypeOther;
  109. }
  110. public String getEdfIsHas() {
  111. return edfIsHas;
  112. }
  113. public void setEdfIsHas(String edfIsHas) {
  114. this.edfIsHas = edfIsHas;
  115. }
  116. public String getIsRuleDef() {
  117. return isRuleDef;
  118. }
  119. public void setIsRuleDef(String isRuleDef) {
  120. this.isRuleDef = isRuleDef;
  121. }
  122. public String getIsHasFmf() {
  123. return isHasFmf;
  124. }
  125. public void setIsHasFmf(String isHasFmf) {
  126. this.isHasFmf = isHasFmf;
  127. }
  128. public String getIsHasVotmf() {
  129. return isHasVotmf;
  130. }
  131. public void setIsHasVotmf(String isHasVotmf) {
  132. this.isHasVotmf = isHasVotmf;
  133. }
  134. public String getEfmfType() {
  135. return efmfType;
  136. }
  137. public void setEfmfType(String efmfType) {
  138. this.efmfType = efmfType;
  139. }
  140. public String getEfmfIsWiicwtosopp() {
  141. return efmfIsWiicwtosopp;
  142. }
  143. public void setEfmfIsWiicwtosopp(String efmfIsWiicwtosopp) {
  144. this.efmfIsWiicwtosopp = efmfIsWiicwtosopp;
  145. }
  146. public String getMdataIsAttp() {
  147. return mdataIsAttp;
  148. }
  149. public void setMdataIsAttp(String mdataIsAttp) {
  150. this.mdataIsAttp = mdataIsAttp;
  151. }
  152. public String getIsRun() {
  153. return isRun;
  154. }
  155. public void setIsRun(String isRun) {
  156. this.isRun = isRun;
  157. }
  158. public String getPaapIsPfct() {
  159. return paapIsPfct;
  160. }
  161. public void setPaapIsPfct(String paapIsPfct) {
  162. this.paapIsPfct = paapIsPfct;
  163. }
  164. public String getTepIsPfct() {
  165. return tepIsPfct;
  166. }
  167. public void setTepIsPfct(String tepIsPfct) {
  168. this.tepIsPfct = tepIsPfct;
  169. }
  170. public String getWrcwlpIsPfct() {
  171. return wrcwlpIsPfct;
  172. }
  173. public void setWrcwlpIsPfct(String wrcwlpIsPfct) {
  174. this.wrcwlpIsPfct = wrcwlpIsPfct;
  175. }
  176. public String getLpepIsPfct() {
  177. return lpepIsPfct;
  178. }
  179. public void setLpepIsPfct(String lpepIsPfct) {
  180. this.lpepIsPfct = lpepIsPfct;
  181. }
  182. public String getFeolpIsPfct() {
  183. return feolpIsPfct;
  184. }
  185. public void setFeolpIsPfct(String feolpIsPfct) {
  186. this.feolpIsPfct = feolpIsPfct;
  187. }
  188. public String getCapIsPfct() {
  189. return capIsPfct;
  190. }
  191. public void setCapIsPfct(String capIsPfct) {
  192. this.capIsPfct = capIsPfct;
  193. }
  194. public String getNote() {
  195. return note;
  196. }
  197. public void setNote(String note) {
  198. this.note = note;
  199. }
  200. public String getStatus() {
  201. return status;
  202. }
  203. public void setStatus(String status) {
  204. this.status = status;
  205. }
  206. public String getPersId() {
  207. return persId;
  208. }
  209. public void setPersId(String persId) {
  210. this.persId = persId;
  211. }
  212. public Date getIntm() {
  213. return intm;
  214. }
  215. public void setIntm(Date intm) {
  216. this.intm = intm;
  217. }
  218. public Date getUptm() {
  219. return uptm;
  220. }
  221. public void setUptm(Date uptm) {
  222. this.uptm = uptm;
  223. }
  224. }