0b82ac8ba90fa4caa8d400e8607b2ae84eed4d67.svn-base 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651
  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:BisInspSvwtWuntRgstr
  9. *
  10. * @author lune
  11. * @date 2019-9-18
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class BisInspSvwtWuntRgstr extends BaseBean implements Serializable {
  15. @ApiModelProperty("监管单位联系人")
  16. private String wuUtAttn;
  17. @ApiModelProperty("建管单位联系方式")
  18. private String wuUtCont;
  19. @ApiModelProperty("单位总人数")
  20. private Long utPersNum;
  21. @ApiModelProperty("在编职工")
  22. private Long workNum;
  23. @ApiModelProperty("非在编职工")
  24. private Long workNotNum;
  25. @ApiModelProperty("占地总面积")
  26. private Double totArea;
  27. @ApiModelProperty("总建筑面积")
  28. private Double buldArea;
  29. @ApiModelProperty("学校类别(1:高校;2:中小学校)")
  30. private String schCla;
  31. @ApiModelProperty("高校类别(1:一般综合;2:理工;3:文史;4:艺术;5:体育;6:医科;7:其他)")
  32. private String uniCla;
  33. @ApiModelProperty("教职工人数")
  34. private Long teachNum;
  35. @ApiModelProperty("住校教职工人数")
  36. private Long teachLvNum;
  37. @ApiModelProperty("学生人数")
  38. private Long stuNum;
  39. @ApiModelProperty("校内住宿生人数")
  40. private Long stuLvNum;
  41. @ApiModelProperty("是否开展合同节水管理(1:是;2:否)")
  42. private String isLchCwsm;
  43. @ApiModelProperty("督查状态(0:未督查;1:督查中;2:已督查)")
  44. private String state;
  45. @ApiModelProperty("数据状态(0:正常;9:删除)")
  46. private String dataStat;
  47. @ApiModelProperty("检查单位")
  48. private String chkUnit;
  49. @ApiModelProperty("检查人员")
  50. private String chkPers;
  51. @ApiModelProperty("检查时间")
  52. private Date chkTm;
  53. @ApiModelProperty("用水单位节约用水情况填报状态(0:未填报;1:未完成;2:已完成)")
  54. private String wuuswInfoStat;
  55. @ApiModelProperty("节水型单位节约用水情况填报状态(0:未填报;1:未完成;2:已完成)")
  56. private String wsuswInfoStat;
  57. @ApiModelProperty("创建人")
  58. private String persId;
  59. @ApiModelProperty("督查组ID")
  60. private String groupId;
  61. @ApiModelProperty("督查组名称")
  62. private String groupName;
  63. @ApiModelProperty("创建时间")
  64. private Date inTm;
  65. @ApiModelProperty("更新时间")
  66. private Date upTm;
  67. @ApiModelProperty("*主键id")
  68. private String id;
  69. @ApiModelProperty("*督查对象ID")
  70. private String objId;
  71. @ApiModelProperty("*单位名称")
  72. private String utName;
  73. @ApiModelProperty("统一社会信用代码")
  74. private String utCode;
  75. @ApiModelProperty("*行政区划全称")
  76. private String adName;
  77. @ApiModelProperty("*行政区编码")
  78. private String adCode;
  79. @ApiModelProperty("*单位类型(1:企业;2:机关;3:学校)")
  80. private String utType;
  81. @ApiModelProperty("*单位性质(1:节水型;2:非节水型)")
  82. private String utPpt;
  83. @ApiModelProperty("授牌名称")
  84. private String openName;
  85. @ApiModelProperty("*用水单位联系人")
  86. private String utAttn;
  87. @ApiModelProperty("*用水单位联系方式")
  88. private String utCont;
  89. @ApiModelProperty("注册地址")
  90. private String signAddr;
  91. @ApiModelProperty("*单位地址")
  92. private String utAddr;
  93. @ApiModelProperty("经度")
  94. private Double pcX;
  95. @ApiModelProperty("纬度")
  96. private Double pcY;
  97. @ApiModelProperty("高德经度")
  98. private Double gdX;
  99. @ApiModelProperty("高德纬度")
  100. private Double gdY;
  101. @ApiModelProperty("行业类型(1:工业企业;2:宾馆;3:其他)")
  102. private String trdType;
  103. @ApiModelProperty("绿地面积")
  104. private Double greenArea;
  105. @ApiModelProperty("取水来源-自来水")
  106. private Double wsTw;
  107. @ApiModelProperty("取水来源-自备井水")
  108. private Double wsBw;
  109. @ApiModelProperty("取水来源-其他")
  110. private Double wsOth;
  111. @ApiModelProperty("缴纳水费")
  112. private Double payWb;
  113. @ApiModelProperty("水费单价")
  114. private Double wbPer;
  115. @ApiModelProperty("宾馆等级")
  116. private String hotlLev;
  117. @ApiModelProperty("床位数")
  118. private Long bedNum;
  119. @ApiModelProperty("客房出租率")
  120. private Double occRate;
  121. @ApiModelProperty("用水量-宾馆部分/机关部分/学校部分")
  122. private Double wuUnit;
  123. @ApiModelProperty("用水量-非宾馆部分/非机关部分/非学校部分")
  124. private Double wuUnitOut;
  125. @ApiModelProperty("主要产品")
  126. private String mainPrd;
  127. @ApiModelProperty("取水许可批准水量")
  128. private Double wipaa;
  129. @ApiModelProperty("水资源管理实时监控系统(1:有;2:无)")
  130. private String hasWrmrms;
  131. @ApiModelProperty("是否纳入重点监控用水单位名录(1:是;2:否)")
  132. private String isKmwuul;
  133. @ApiModelProperty("重点监控用水单位名录等级(1:国家级;2:省级;3:市级)")
  134. private String kmwuulLev;
  135. @ApiModelProperty("用水日常监管单位名称(水行政主管部门)")
  136. private String wuUt;
  137. @ApiModelProperty("单位负责人")
  138. private String utLead;
  139. public BisInspSvwtWuntRgstr() {
  140. }
  141. public String getGroupName() {
  142. return groupName;
  143. }
  144. public void setGroupName(String groupName) {
  145. this.groupName = groupName;
  146. }
  147. public String getWuUtAttn() {
  148. return wuUtAttn;
  149. }
  150. public void setWuUtAttn(String wuUtAttn) {
  151. this.wuUtAttn = wuUtAttn;
  152. }
  153. public String getWuUtCont() {
  154. return wuUtCont;
  155. }
  156. public void setWuUtCont(String wuUtCont) {
  157. this.wuUtCont = wuUtCont;
  158. }
  159. public Long getUtPersNum() {
  160. return utPersNum;
  161. }
  162. public void setUtPersNum(Long utPersNum) {
  163. this.utPersNum = utPersNum;
  164. }
  165. public Long getWorkNum() {
  166. return workNum;
  167. }
  168. public void setWorkNum(Long workNum) {
  169. this.workNum = workNum;
  170. }
  171. public Long getWorkNotNum() {
  172. return workNotNum;
  173. }
  174. public void setWorkNotNum(Long workNotNum) {
  175. this.workNotNum = workNotNum;
  176. }
  177. public Double getTotArea() {
  178. return totArea;
  179. }
  180. public void setTotArea(Double totArea) {
  181. this.totArea = totArea;
  182. }
  183. public Double getBuldArea() {
  184. return buldArea;
  185. }
  186. public void setBuldArea(Double buldArea) {
  187. this.buldArea = buldArea;
  188. }
  189. public String getSchCla() {
  190. return schCla;
  191. }
  192. public void setSchCla(String schCla) {
  193. this.schCla = schCla;
  194. }
  195. public String getUniCla() {
  196. return uniCla;
  197. }
  198. public void setUniCla(String uniCla) {
  199. this.uniCla = uniCla;
  200. }
  201. public Long getTeachNum() {
  202. return teachNum;
  203. }
  204. public void setTeachNum(Long teachNum) {
  205. this.teachNum = teachNum;
  206. }
  207. public Long getTeachLvNum() {
  208. return teachLvNum;
  209. }
  210. public void setTeachLvNum(Long teachLvNum) {
  211. this.teachLvNum = teachLvNum;
  212. }
  213. public Long getStuNum() {
  214. return stuNum;
  215. }
  216. public void setStuNum(Long stuNum) {
  217. this.stuNum = stuNum;
  218. }
  219. public Long getStuLvNum() {
  220. return stuLvNum;
  221. }
  222. public void setStuLvNum(Long stuLvNum) {
  223. this.stuLvNum = stuLvNum;
  224. }
  225. public String getIsLchCwsm() {
  226. return isLchCwsm;
  227. }
  228. public void setIsLchCwsm(String isLchCwsm) {
  229. this.isLchCwsm = isLchCwsm;
  230. }
  231. public String getState() {
  232. return state;
  233. }
  234. public void setState(String state) {
  235. this.state = state;
  236. }
  237. public String getDataStat() {
  238. return dataStat;
  239. }
  240. public void setDataStat(String dataStat) {
  241. this.dataStat = dataStat;
  242. }
  243. public String getChkUnit() {
  244. return chkUnit;
  245. }
  246. public void setChkUnit(String chkUnit) {
  247. this.chkUnit = chkUnit;
  248. }
  249. public String getChkPers() {
  250. return chkPers;
  251. }
  252. public void setChkPers(String chkPers) {
  253. this.chkPers = chkPers;
  254. }
  255. public Date getChkTm() {
  256. return chkTm;
  257. }
  258. public void setChkTm(Date chkTm) {
  259. this.chkTm = chkTm;
  260. }
  261. public String getWuuswInfoStat() {
  262. return wuuswInfoStat;
  263. }
  264. public void setWuuswInfoStat(String wuuswInfoStat) {
  265. this.wuuswInfoStat = wuuswInfoStat;
  266. }
  267. public String getWsuswInfoStat() {
  268. return wsuswInfoStat;
  269. }
  270. public void setWsuswInfoStat(String wsuswInfoStat) {
  271. this.wsuswInfoStat = wsuswInfoStat;
  272. }
  273. public String getPersId() {
  274. return persId;
  275. }
  276. public void setPersId(String persId) {
  277. this.persId = persId;
  278. }
  279. @Override
  280. public String getGroupId() {
  281. return groupId;
  282. }
  283. @Override
  284. public void setGroupId(String groupId) {
  285. this.groupId = groupId;
  286. }
  287. public Date getInTm() {
  288. return inTm;
  289. }
  290. public void setInTm(Date inTm) {
  291. this.inTm = inTm;
  292. }
  293. public Date getUpTm() {
  294. return upTm;
  295. }
  296. public void setUpTm(Date upTm) {
  297. this.upTm = upTm;
  298. }
  299. public String getId() {
  300. return id;
  301. }
  302. public void setId(String id) {
  303. this.id = id;
  304. }
  305. @Override
  306. public String getObjId() {
  307. return objId;
  308. }
  309. @Override
  310. public void setObjId(String objId) {
  311. this.objId = objId;
  312. }
  313. public String getUtName() {
  314. return utName;
  315. }
  316. public void setUtName(String utName) {
  317. this.utName = utName;
  318. }
  319. public String getUtCode() {
  320. return utCode;
  321. }
  322. public void setUtCode(String utCode) {
  323. this.utCode = utCode;
  324. }
  325. public String getAdName() {
  326. return adName;
  327. }
  328. public void setAdName(String adName) {
  329. this.adName = adName;
  330. }
  331. public String getAdCode() {
  332. return adCode;
  333. }
  334. public void setAdCode(String adCode) {
  335. this.adCode = adCode;
  336. }
  337. public String getUtType() {
  338. return utType;
  339. }
  340. public void setUtType(String utType) {
  341. this.utType = utType;
  342. }
  343. public String getUtPpt() {
  344. return utPpt;
  345. }
  346. public void setUtPpt(String utPpt) {
  347. this.utPpt = utPpt;
  348. }
  349. public String getOpenName() {
  350. return openName;
  351. }
  352. public void setOpenName(String openName) {
  353. this.openName = openName;
  354. }
  355. public String getUtAttn() {
  356. return utAttn;
  357. }
  358. public void setUtAttn(String utAttn) {
  359. this.utAttn = utAttn;
  360. }
  361. public String getUtCont() {
  362. return utCont;
  363. }
  364. public void setUtCont(String utCont) {
  365. this.utCont = utCont;
  366. }
  367. public String getSignAddr() {
  368. return signAddr;
  369. }
  370. public void setSignAddr(String signAddr) {
  371. this.signAddr = signAddr;
  372. }
  373. public String getUtAddr() {
  374. return utAddr;
  375. }
  376. public void setUtAddr(String utAddr) {
  377. this.utAddr = utAddr;
  378. }
  379. public Double getPcX() {
  380. return pcX;
  381. }
  382. public void setPcX(Double pcX) {
  383. this.pcX = pcX;
  384. }
  385. public Double getPcY() {
  386. return pcY;
  387. }
  388. public void setPcY(Double pcY) {
  389. this.pcY = pcY;
  390. }
  391. public Double getGdX() {
  392. return gdX;
  393. }
  394. public void setGdX(Double gdX) {
  395. this.gdX = gdX;
  396. }
  397. public Double getGdY() {
  398. return gdY;
  399. }
  400. public void setGdY(Double gdY) {
  401. this.gdY = gdY;
  402. }
  403. public String getTrdType() {
  404. return trdType;
  405. }
  406. public void setTrdType(String trdType) {
  407. this.trdType = trdType;
  408. }
  409. public Double getGreenArea() {
  410. return greenArea;
  411. }
  412. public void setGreenArea(Double greenArea) {
  413. this.greenArea = greenArea;
  414. }
  415. public Double getWsTw() {
  416. return wsTw;
  417. }
  418. public void setWsTw(Double wsTw) {
  419. this.wsTw = wsTw;
  420. }
  421. public Double getWsBw() {
  422. return wsBw;
  423. }
  424. public void setWsBw(Double wsBw) {
  425. this.wsBw = wsBw;
  426. }
  427. public Double getWsOth() {
  428. return wsOth;
  429. }
  430. public void setWsOth(Double wsOth) {
  431. this.wsOth = wsOth;
  432. }
  433. public Double getPayWb() {
  434. return payWb;
  435. }
  436. public void setPayWb(Double payWb) {
  437. this.payWb = payWb;
  438. }
  439. public Double getWbPer() {
  440. return wbPer;
  441. }
  442. public void setWbPer(Double wbPer) {
  443. this.wbPer = wbPer;
  444. }
  445. public String getHotlLev() {
  446. return hotlLev;
  447. }
  448. public void setHotlLev(String hotlLev) {
  449. this.hotlLev = hotlLev;
  450. }
  451. public Long getBedNum() {
  452. return bedNum;
  453. }
  454. public void setBedNum(Long bedNum) {
  455. this.bedNum = bedNum;
  456. }
  457. public Double getOccRate() {
  458. return occRate;
  459. }
  460. public void setOccRate(Double occRate) {
  461. this.occRate = occRate;
  462. }
  463. public Double getWuUnit() {
  464. return wuUnit;
  465. }
  466. public void setWuUnit(Double wuUnit) {
  467. this.wuUnit = wuUnit;
  468. }
  469. public Double getWuUnitOut() {
  470. return wuUnitOut;
  471. }
  472. public void setWuUnitOut(Double wuUnitOut) {
  473. this.wuUnitOut = wuUnitOut;
  474. }
  475. public String getMainPrd() {
  476. return mainPrd;
  477. }
  478. public void setMainPrd(String mainPrd) {
  479. this.mainPrd = mainPrd;
  480. }
  481. public Double getWipaa() {
  482. return wipaa;
  483. }
  484. public void setWipaa(Double wipaa) {
  485. this.wipaa = wipaa;
  486. }
  487. public String getHasWrmrms() {
  488. return hasWrmrms;
  489. }
  490. public void setHasWrmrms(String hasWrmrms) {
  491. this.hasWrmrms = hasWrmrms;
  492. }
  493. public String getIsKmwuul() {
  494. return isKmwuul;
  495. }
  496. public void setIsKmwuul(String isKmwuul) {
  497. this.isKmwuul = isKmwuul;
  498. }
  499. public String getKmwuulLev() {
  500. return kmwuulLev;
  501. }
  502. public void setKmwuulLev(String kmwuulLev) {
  503. this.kmwuulLev = kmwuulLev;
  504. }
  505. public String getWuUt() {
  506. return wuUt;
  507. }
  508. public void setWuUt(String wuUt) {
  509. this.wuUt = wuUt;
  510. }
  511. public String getUtLead() {
  512. return utLead;
  513. }
  514. public void setUtLead(String utLead) {
  515. this.utLead = utLead;
  516. }
  517. @Override
  518. public String toString() {
  519. return "BisInspSvwtWuntRgstr [" + "wuUtAttn=" + wuUtAttn + ", wuUtCont=" + wuUtCont + ", utPersNum=" + utPersNum + ", workNum=" + workNum + ", workNotNum=" + workNotNum + ", totArea=" + totArea + ", buldArea=" + buldArea + ", schCla=" + schCla + ", uniCla=" + uniCla + ", teachNum=" + teachNum + ", teachLvNum=" + teachLvNum + ", stuNum=" + stuNum + ", stuLvNum=" + stuLvNum + ", isLchCwsm=" + isLchCwsm + ", state=" + state + ", dataStat=" + dataStat + ", chkUnit=" + chkUnit + ", chkPers=" + chkPers + ", chkTm=" + chkTm + ", wuuswInfoStat=" + wuuswInfoStat + ", wsuswInfoStat=" + wsuswInfoStat + ", persId=" + persId + ", groupId=" + groupId + ", inTm=" + inTm + ", upTm=" + upTm + ", id=" + id + ", objId=" + objId + ", utName=" + utName + ", utCode=" + utCode + ", adName=" + adName + ", adCode=" + adCode + ", utType=" + utType + ", utPpt=" + utPpt + ", openName=" + openName + ", utAttn=" + utAttn + ", utCont=" + utCont + ", signAddr=" + signAddr + ", utAddr=" + utAddr + ", pcX=" + pcX + ", pcY=" + pcY + ", gdX=" + gdX + ", gdY=" + gdY + ", trdType=" + trdType + ", greenArea=" + greenArea + ", wsTw=" + wsTw + ", wsBw=" + wsBw + ", wsOth=" + wsOth + ", payWb=" + payWb + ", wbPer=" + wbPer + ", hotlLev=" + hotlLev + ", bedNum=" + bedNum + ", occRate=" + occRate + ", wuUnit=" + wuUnit + ", wuUnitOut=" + wuUnitOut + ", mainPrd=" + mainPrd + ", wipaa=" + wipaa + ", hasWrmrms=" + hasWrmrms + ", isKmwuul=" + isKmwuul + ", kmwuulLev=" + kmwuulLev + ", wuUt=" + wuUt + "]";
  520. }
  521. }