a35e7088e287cda2549b292b6fe840cba49e91fa.svn-base 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  1. package cn.com.goldenwater.dcproj.dto;
  2. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import java.io.Serializable;
  5. /**
  6. * Created by lhc on 2019-2-20.
  7. */
  8. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  9. public class BisInspBaseDto implements Serializable {
  10. public BisInspBaseDto() {
  11. }
  12. private String objId;
  13. private String groupId;
  14. private String rgstrId;
  15. @ApiModelProperty(value = "公用-编码")
  16. private String code;//编码
  17. @ApiModelProperty(value = "公用-名称")
  18. private String nm;//名称
  19. @ApiModelProperty(value = "公用-各种类型")
  20. private String type;//类型
  21. @ApiModelProperty(value = "公用-高德经度")
  22. private Double lgtd;
  23. @ApiModelProperty(value = "公用-高德纬度")
  24. private Double lttd;
  25. @ApiModelProperty(value = "公用-经度")
  26. private Double lgtdPc;
  27. @ApiModelProperty(value = "公用-纬度")
  28. private Double lttdPc;
  29. @ApiModelProperty("基本信息编码")
  30. private String baseCode;
  31. @ApiModelProperty(value = "公用-督查状态")
  32. private String state;
  33. private String locat;//位置
  34. private String calType;//督查对象类型
  35. private String status;
  36. @ApiModelProperty(value = "公用-历史是否督查 1是")
  37. private String hstInsp;//历史是否督查(现在只有水库)
  38. private String engSta;
  39. @ApiModelProperty(value = "水库总库容")
  40. private Double totCap;
  41. @ApiModelProperty(value = "水库坝高")
  42. private Double damSizeHig;
  43. @ApiModelProperty(value = "水库挡水主坝类型按材料分")
  44. private String damTypeMat;
  45. @ApiModelProperty(value = "水库挡水主坝类型按结构分")
  46. private String damTypeStr;
  47. @ApiModelProperty(value = "水库登记号")
  48. private String regCode;
  49. // @ApiModelProperty(value = "饮水工程类型 1-城镇管网延伸 2-联村 3-单村")
  50. // private String engType;
  51. @ApiModelProperty(value = "水毁工程类型")
  52. private String objType;
  53. @ApiModelProperty(value = "地下水建井类型")
  54. private String bwsttp;
  55. @ApiModelProperty(value = "地下水管理单位")
  56. private String mnun;
  57. @ApiModelProperty(value = "水闸工程规模")
  58. private String engScal;
  59. @ApiModelProperty(value = "取水口水源类型 1-河流2-湖泊-3水库,取水方式是type字段1-自流2-抽提")
  60. private String wsType;
  61. @ApiModelProperty(value = "取水口取水单位")
  62. private String admName;
  63. @ApiModelProperty(value = "水文站管理单位")
  64. private String admauth;
  65. @ApiModelProperty(value = "水源地代码")
  66. private String swhsCode;
  67. @ApiModelProperty(value = "行政村级别")
  68. private String adGrad;
  69. @ApiModelProperty("取用水户中取水口编码")
  70. private String wintCode;
  71. public String getWintCode() {
  72. return wintCode;
  73. }
  74. public void setWintCode(String wintCode) {
  75. this.wintCode = wintCode;
  76. }
  77. public String getBaseCode() {
  78. return baseCode;
  79. }
  80. public void setBaseCode(String baseCode) {
  81. this.baseCode = baseCode;
  82. }
  83. public String getAdGrad() {
  84. return adGrad;
  85. }
  86. public void setAdGrad(String adGrad) {
  87. this.adGrad = adGrad;
  88. }
  89. public String getAdmName() {
  90. return admName;
  91. }
  92. public void setAdmName(String admName) {
  93. this.admName = admName;
  94. }
  95. public String getEngScal() {
  96. return engScal;
  97. }
  98. public void setEngScal(String engScal) {
  99. this.engScal = engScal;
  100. }
  101. public String getWsType() {
  102. return wsType;
  103. }
  104. public void setWsType(String wsType) {
  105. this.wsType = wsType;
  106. }
  107. public String getAdmauth() {
  108. return admauth;
  109. }
  110. public void setAdmauth(String admauth) {
  111. this.admauth = admauth;
  112. }
  113. public String getSwhsCode() {
  114. return swhsCode;
  115. }
  116. public void setSwhsCode(String swhsCode) {
  117. this.swhsCode = swhsCode;
  118. }
  119. public String getBwsttp() {
  120. return bwsttp;
  121. }
  122. public void setBwsttp(String bwsttp) {
  123. this.bwsttp = bwsttp;
  124. }
  125. public String getMnun() {
  126. return mnun;
  127. }
  128. public void setMnun(String mnun) {
  129. this.mnun = mnun;
  130. }
  131. public String getObjType() {
  132. return objType;
  133. }
  134. public void setObjType(String objType) {
  135. this.objType = objType;
  136. }
  137. public Double getTotCap() {
  138. return totCap;
  139. }
  140. public void setTotCap(Double totCap) {
  141. this.totCap = totCap;
  142. }
  143. public Double getDamSizeHig() {
  144. return damSizeHig;
  145. }
  146. public void setDamSizeHig(Double damSizeHig) {
  147. this.damSizeHig = damSizeHig;
  148. }
  149. public String getDamTypeMat() {
  150. return damTypeMat;
  151. }
  152. public void setDamTypeMat(String damTypeMat) {
  153. this.damTypeMat = damTypeMat;
  154. }
  155. public String getDamTypeStr() {
  156. return damTypeStr;
  157. }
  158. public void setDamTypeStr(String damTypeStr) {
  159. this.damTypeStr = damTypeStr;
  160. }
  161. public String getRegCode() {
  162. return regCode;
  163. }
  164. public void setRegCode(String regCode) {
  165. this.regCode = regCode;
  166. }
  167. public String getEngSta() {
  168. return engSta;
  169. }
  170. public void setEngSta(String engSta) {
  171. this.engSta = engSta;
  172. }
  173. public String getObjId() {
  174. return objId;
  175. }
  176. public void setObjId(String objId) {
  177. this.objId = objId;
  178. }
  179. public String getGroupId() {
  180. return groupId;
  181. }
  182. public void setGroupId(String groupId) {
  183. this.groupId = groupId;
  184. }
  185. public String getRgstrId() {
  186. return rgstrId;
  187. }
  188. public void setRgstrId(String rgstrId) {
  189. this.rgstrId = rgstrId;
  190. }
  191. public String getHstInsp() {
  192. return hstInsp;
  193. }
  194. public void setHstInsp(String hstInsp) {
  195. this.hstInsp = hstInsp;
  196. }
  197. public String getStatus() {
  198. return status;
  199. }
  200. public void setStatus(String status) {
  201. this.status = status;
  202. }
  203. public String getState() {
  204. return state;
  205. }
  206. public void setState(String state) {
  207. this.state = state;
  208. }
  209. public String getCode() {
  210. return code;
  211. }
  212. public void setCode(String code) {
  213. this.code = code;
  214. }
  215. public String getNm() {
  216. return nm;
  217. }
  218. public void setNm(String nm) {
  219. this.nm = nm;
  220. }
  221. public String getType() {
  222. return type;
  223. }
  224. public void setType(String type) {
  225. this.type = type;
  226. }
  227. public Double getLgtd() {
  228. return lgtd;
  229. }
  230. public void setLgtd(Double lgtd) {
  231. this.lgtd = lgtd;
  232. }
  233. public Double getLttd() {
  234. return lttd;
  235. }
  236. public void setLttd(Double lttd) {
  237. this.lttd = lttd;
  238. }
  239. public String getLocat() {
  240. return locat;
  241. }
  242. public void setLocat(String locat) {
  243. this.locat = locat;
  244. }
  245. public String getCalType() {
  246. return calType;
  247. }
  248. public void setCalType(String calType) {
  249. this.calType = calType;
  250. }
  251. public Double getLgtdPc() {
  252. return lgtdPc;
  253. }
  254. public void setLgtdPc(Double lgtdPc) {
  255. this.lgtdPc = lgtdPc;
  256. }
  257. public Double getLttdPc() {
  258. return lttdPc;
  259. }
  260. public void setLttdPc(Double lttdPc) {
  261. this.lttdPc = lttdPc;
  262. }
  263. @Override
  264. public String toString() {
  265. return "BisInspBaseDto{" +
  266. "code='" + code + '\'' +
  267. ", nm='" + nm + '\'' +
  268. ", type='" + type + '\'' +
  269. ", lgtd=" + lgtd +
  270. ", lttd=" + lttd +
  271. ", lgtdPc=" + lgtdPc +
  272. ", lttdPc=" + lttdPc +
  273. ", state='" + state + '\'' +
  274. ", locat='" + locat + '\'' +
  275. ", calType='" + calType + '\'' +
  276. ", status='" + status + '\'' +
  277. '}';
  278. }
  279. }