0f29009a4f2546fbdac520b17ab5ee528185eccf.svn-base 8.2 KB

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