85391b6e6327d26ce900bd4e29e13d80be21749e.svn-base 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  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. * AttWiuWatLicParam
  9. *
  10. * @author lune
  11. * @date 2019-10-16
  12. */
  13. public class AttWiuWatLicParam extends PageParam implements Serializable {
  14. @ApiModelProperty("证件状态,1新发,2变更,3注销,4吊销,5延续,6失败备案")
  15. private String certCond;
  16. @ApiModelProperty("取水方式")
  17. private String chkIntMet;
  18. @ApiModelProperty("取水用途")
  19. private String intUse;
  20. @ApiModelProperty("水源类型")
  21. private String chkSourTp;
  22. @ApiModelProperty("退水量")
  23. private String bkWw;
  24. @ApiModelProperty("退水地点")
  25. private String rwAddr;
  26. @ApiModelProperty("退水方式")
  27. private String rwTp;
  28. @ApiModelProperty("年退水量")
  29. private String rwW;
  30. @ApiModelProperty("退水水质要求")
  31. private String rwWqReq;
  32. @ApiModelProperty("审批单位编码")
  33. private String apprOrgCd;
  34. @ApiModelProperty("审批时间")
  35. private Date apprDt;
  36. @ApiModelProperty("审批单位名称")
  37. private String apprOrgName;
  38. @ApiModelProperty("主键ID")
  39. private String id;
  40. @ApiModelProperty("取水户ID")
  41. private String wiuId;
  42. @ApiModelProperty("取水许可审批情况类型(1:已申领取水许可证;2:已办理取水许可但未申领取水许可证;3:未办理取水许可)")
  43. private String qsxkspqklx;
  44. @ApiModelProperty("取水许可证号")
  45. private String watLicCode;
  46. @ApiModelProperty("取水审批机关")
  47. private String apprOrg;
  48. @ApiModelProperty("取水许可证有效期限(起)")
  49. private Date wiuBd;
  50. @ApiModelProperty("取水许可证有效期限(止)")
  51. private Date wiuDl;
  52. @ApiModelProperty("取水权人名称")
  53. private String wrpNm;
  54. @ApiModelProperty("许可取水量万m3")
  55. private Double wiuWw;
  56. @ApiModelProperty("取水许可批复文号")
  57. private String replSn;
  58. @ApiModelProperty("取水申请人姓名")
  59. private String applNm;
  60. @ApiModelProperty("取水许可有效期限(起)")
  61. private Date intBd;
  62. @ApiModelProperty("取水许可有效期限(止)")
  63. private Date intDl;
  64. @ApiModelProperty("审批取水量万m3")
  65. private Double apprWw;
  66. @ApiModelProperty("未办理取水许可情况说明")
  67. private String ftafawdp;
  68. @ApiModelProperty("创建时间")
  69. private Date inTm;
  70. @ApiModelProperty("更新时间")
  71. private Date upTm;
  72. @ApiModelProperty("法定代表人/负责人姓名")
  73. private String name;
  74. @ApiModelProperty("取水许可证代码值")
  75. private String wintCode;
  76. @ApiModelProperty("取水用户代码")
  77. private String wiuCode;
  78. @ApiModelProperty("取水口位置")
  79. private String wintPos;
  80. @ApiModelProperty("监督单位编码")
  81. private String manOrgCd;
  82. @ApiModelProperty("监督单位名称")
  83. private String manOrgName;
  84. public AttWiuWatLicParam() {
  85. }
  86. public String getManOrgCd() {
  87. return manOrgCd;
  88. }
  89. public String getManOrgName() {
  90. return manOrgName;
  91. }
  92. public void setManOrgCd(String manOrgCd) {
  93. this.manOrgCd = manOrgCd;
  94. }
  95. public void setManOrgName(String manOrgName) {
  96. this.manOrgName = manOrgName;
  97. }
  98. public String getWintPos() {
  99. return wintPos;
  100. }
  101. public void setWintPos(String wintPos) {
  102. this.wintPos = wintPos;
  103. }
  104. public String getWiuCode() {
  105. return wiuCode;
  106. }
  107. public void setWiuCode(String wiuCode) {
  108. this.wiuCode = wiuCode;
  109. }
  110. public String getName() {
  111. return name;
  112. }
  113. public void setName(String name) {
  114. this.name = name;
  115. }
  116. public String getWintCode() {
  117. return wintCode;
  118. }
  119. public void setWintCode(String wintCode) {
  120. this.wintCode = wintCode;
  121. }
  122. public String getCertCond() {
  123. return certCond;
  124. }
  125. public void setCertCond(String certCond) {
  126. this.certCond = certCond;
  127. }
  128. public String getChkIntMet() {
  129. return chkIntMet;
  130. }
  131. public void setChkIntMet(String chkIntMet) {
  132. this.chkIntMet = chkIntMet;
  133. }
  134. public String getIntUse() {
  135. return intUse;
  136. }
  137. public void setIntUse(String intUse) {
  138. this.intUse = intUse;
  139. }
  140. public String getChkSourTp() {
  141. return chkSourTp;
  142. }
  143. public void setChkSourTp(String chkSourTp) {
  144. this.chkSourTp = chkSourTp;
  145. }
  146. public String getBkWw() {
  147. return bkWw;
  148. }
  149. public void setBkWw(String bkWw) {
  150. this.bkWw = bkWw;
  151. }
  152. public String getRwAddr() {
  153. return rwAddr;
  154. }
  155. public void setRwAddr(String rwAddr) {
  156. this.rwAddr = rwAddr;
  157. }
  158. public String getRwTp() {
  159. return rwTp;
  160. }
  161. public void setRwTp(String rwTp) {
  162. this.rwTp = rwTp;
  163. }
  164. public String getRwW() {
  165. return rwW;
  166. }
  167. public void setRwW(String rwW) {
  168. this.rwW = rwW;
  169. }
  170. public String getRwWqReq() {
  171. return rwWqReq;
  172. }
  173. public void setRwWqReq(String rwWqReq) {
  174. this.rwWqReq = rwWqReq;
  175. }
  176. public String getApprOrgCd() {
  177. return apprOrgCd;
  178. }
  179. public void setApprOrgCd(String apprOrgCd) {
  180. this.apprOrgCd = apprOrgCd;
  181. }
  182. public Date getApprDt() {
  183. return apprDt;
  184. }
  185. public void setApprDt(Date apprDt) {
  186. this.apprDt = apprDt;
  187. }
  188. public String getApprOrgName() {
  189. return apprOrgName;
  190. }
  191. public void setApprOrgName(String apprOrgName) {
  192. this.apprOrgName = apprOrgName;
  193. }
  194. public String getId() {
  195. return id;
  196. }
  197. public void setId(String id) {
  198. this.id = id;
  199. }
  200. public String getWiuId() {
  201. return wiuId;
  202. }
  203. public void setWiuId(String wiuId) {
  204. this.wiuId = wiuId;
  205. }
  206. public String getQsxkspqklx() {
  207. return qsxkspqklx;
  208. }
  209. public void setQsxkspqklx(String qsxkspqklx) {
  210. this.qsxkspqklx = qsxkspqklx;
  211. }
  212. public String getWatLicCode() {
  213. return watLicCode;
  214. }
  215. public void setWatLicCode(String watLicCode) {
  216. this.watLicCode = watLicCode;
  217. }
  218. public String getApprOrg() {
  219. return apprOrg;
  220. }
  221. public void setApprOrg(String apprOrg) {
  222. this.apprOrg = apprOrg;
  223. }
  224. public Date getWiuBd() {
  225. return wiuBd;
  226. }
  227. public void setWiuBd(Date wiuBd) {
  228. this.wiuBd = wiuBd;
  229. }
  230. public Date getWiuDl() {
  231. return wiuDl;
  232. }
  233. public void setWiuDl(Date wiuDl) {
  234. this.wiuDl = wiuDl;
  235. }
  236. public String getWrpNm() {
  237. return wrpNm;
  238. }
  239. public void setWrpNm(String wrpNm) {
  240. this.wrpNm = wrpNm;
  241. }
  242. public Double getWiuWw() {
  243. return wiuWw;
  244. }
  245. public void setWiuWw(Double wiuWw) {
  246. this.wiuWw = wiuWw;
  247. }
  248. public String getReplSn() {
  249. return replSn;
  250. }
  251. public void setReplSn(String replSn) {
  252. this.replSn = replSn;
  253. }
  254. public String getApplNm() {
  255. return applNm;
  256. }
  257. public void setApplNm(String applNm) {
  258. this.applNm = applNm;
  259. }
  260. public Date getIntBd() {
  261. return intBd;
  262. }
  263. public void setIntBd(Date intBd) {
  264. this.intBd = intBd;
  265. }
  266. public Date getIntDl() {
  267. return intDl;
  268. }
  269. public void setIntDl(Date intDl) {
  270. this.intDl = intDl;
  271. }
  272. public Double getApprWw() {
  273. return apprWw;
  274. }
  275. public void setApprWw(Double apprWw) {
  276. this.apprWw = apprWw;
  277. }
  278. public String getFtafawdp() {
  279. return ftafawdp;
  280. }
  281. public void setFtafawdp(String ftafawdp) {
  282. this.ftafawdp = ftafawdp;
  283. }
  284. public Date getInTm() {
  285. return inTm;
  286. }
  287. public void setInTm(Date inTm) {
  288. this.inTm = inTm;
  289. }
  290. public Date getUpTm() {
  291. return upTm;
  292. }
  293. public void setUpTm(Date upTm) {
  294. this.upTm = upTm;
  295. }
  296. }