64aa34e35d1d66c6336824eeeae42960d25f534d.svn-base 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import cn.com.goldenwater.core.model.BaseBean;
  5. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * entity:AttSwhsjsBase
  9. *
  10. * @author
  11. * @date 2022-2-23
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class AttSwhsjsBase extends BaseBean implements Serializable {
  15. @ApiModelProperty("主键id")
  16. private String id;
  17. @ApiModelProperty("地表水水源地代码")
  18. private String swhsCode;
  19. @ApiModelProperty("地表水水源地名称")
  20. private String swhsName;
  21. @ApiModelProperty("行政区划编码")
  22. private String adCode;
  23. @ApiModelProperty("行政区划")
  24. private String adName;
  25. @ApiModelProperty("水源地类型--水库 1 湖泊 2 河流/ 河道 3 其他 9")
  26. private String wainWasoType;
  27. @ApiModelProperty("使用状态(1:城市日常 2:城市日常、应急 3:乡村日常 4:乡村日常、应急)")
  28. private String swhsUse;
  29. @ApiModelProperty("水源地级别 1:市级 2:县级 ")
  30. private String swhsLevel;
  31. @ApiModelProperty("取水口位置")
  32. private String wainLoc;
  33. @ApiModelProperty("管理单位名称")
  34. private String insName;
  35. @ApiModelProperty("管理单位联系人")
  36. private String insPer;
  37. @ApiModelProperty("管理单位联系人电话")
  38. private String insPerPhone;
  39. @ApiModelProperty("水行政主管部门")
  40. private String dept;
  41. @ApiModelProperty("水行政主管部门联系人")
  42. private String deptPer;
  43. @ApiModelProperty("水行政主管部门联系电话")
  44. private String deptPerPhone;
  45. @ApiModelProperty("地表水水源地经度")
  46. private Double centerX;
  47. @ApiModelProperty("地表水水源地纬度")
  48. private Double centerY;
  49. @ApiModelProperty("地表水水源地经度--高德")
  50. private Double gdX;
  51. @ApiModelProperty("地表水水源地纬度--高德")
  52. private Double gdY;
  53. @ApiModelProperty("人员id")
  54. private String persId;
  55. @ApiModelProperty("备注")
  56. private String note;
  57. @ApiModelProperty("创建时间")
  58. private Date intm;
  59. @ApiModelProperty("更新时间")
  60. private Date uptm;
  61. @ApiModelProperty("数据状态")
  62. private String dataStat;
  63. public String getId() {
  64. return id;
  65. }
  66. public void setId(String id) {
  67. this.id = id;
  68. }
  69. public String getSwhsCode() {
  70. return swhsCode;
  71. }
  72. public void setSwhsCode(String swhsCode) {
  73. this.swhsCode = swhsCode;
  74. }
  75. public String getSwhsName() {
  76. return swhsName;
  77. }
  78. public void setSwhsName(String swhsName) {
  79. this.swhsName = swhsName;
  80. }
  81. public String getAdCode() {
  82. return adCode;
  83. }
  84. public void setAdCode(String adCode) {
  85. this.adCode = adCode;
  86. }
  87. public String getAdName() {
  88. return adName;
  89. }
  90. public void setAdName(String adName) {
  91. this.adName = adName;
  92. }
  93. public String getWainWasoType() {
  94. return wainWasoType;
  95. }
  96. public void setWainWasoType(String wainWasoType) {
  97. this.wainWasoType = wainWasoType;
  98. }
  99. public String getSwhsUse() {
  100. return swhsUse;
  101. }
  102. public void setSwhsUse(String swhsUse) {
  103. this.swhsUse = swhsUse;
  104. }
  105. public String getSwhsLevel() {
  106. return swhsLevel;
  107. }
  108. public void setSwhsLevel(String swhsLevel) {
  109. this.swhsLevel = swhsLevel;
  110. }
  111. public String getWainLoc() {
  112. return wainLoc;
  113. }
  114. public void setWainLoc(String wainLoc) {
  115. this.wainLoc = wainLoc;
  116. }
  117. public String getInsName() {
  118. return insName;
  119. }
  120. public void setInsName(String insName) {
  121. this.insName = insName;
  122. }
  123. public String getInsPer() {
  124. return insPer;
  125. }
  126. public void setInsPer(String insPer) {
  127. this.insPer = insPer;
  128. }
  129. public String getInsPerPhone() {
  130. return insPerPhone;
  131. }
  132. public void setInsPerPhone(String insPerPhone) {
  133. this.insPerPhone = insPerPhone;
  134. }
  135. public String getDept() {
  136. return dept;
  137. }
  138. public void setDept(String dept) {
  139. this.dept = dept;
  140. }
  141. public String getDeptPer() {
  142. return deptPer;
  143. }
  144. public void setDeptPer(String deptPer) {
  145. this.deptPer = deptPer;
  146. }
  147. public String getDeptPerPhone() {
  148. return deptPerPhone;
  149. }
  150. public void setDeptPerPhone(String deptPerPhone) {
  151. this.deptPerPhone = deptPerPhone;
  152. }
  153. public Double getCenterX() {
  154. return centerX;
  155. }
  156. public void setCenterX(Double centerX) {
  157. this.centerX = centerX;
  158. }
  159. public Double getCenterY() {
  160. return centerY;
  161. }
  162. public void setCenterY(Double centerY) {
  163. this.centerY = centerY;
  164. }
  165. public Double getGdX() {
  166. return gdX;
  167. }
  168. public void setGdX(Double gdX) {
  169. this.gdX = gdX;
  170. }
  171. public Double getGdY() {
  172. return gdY;
  173. }
  174. public void setGdY(Double gdY) {
  175. this.gdY = gdY;
  176. }
  177. public String getPersId() {
  178. return persId;
  179. }
  180. public void setPersId(String persId) {
  181. this.persId = persId;
  182. }
  183. public String getNote() {
  184. return note;
  185. }
  186. public void setNote(String note) {
  187. this.note = note;
  188. }
  189. public Date getIntm() {
  190. return intm;
  191. }
  192. public void setIntm(Date intm) {
  193. this.intm = intm;
  194. }
  195. public Date getUptm() {
  196. return uptm;
  197. }
  198. public void setUptm(Date uptm) {
  199. this.uptm = uptm;
  200. }
  201. public String getDataStat() {
  202. return dataStat;
  203. }
  204. public void setDataStat(String dataStat) {
  205. this.dataStat = dataStat;
  206. }
  207. @Override
  208. public String toString() {
  209. return "AttSwhsjsBase [" + "id=" + id + ", swhsCode=" + swhsCode + ", swhsName=" + swhsName + ", adCode=" + adCode + ", adName=" + adName + ", wainWasoType=" + wainWasoType + ", swhsUse=" + swhsUse + ", swhsLevel=" + swhsLevel + ", wainLoc=" + wainLoc + ", insName=" + insName + ", insPer=" + insPer + ", insPerPhone=" + insPerPhone + ", dept=" + dept + ", deptPer=" + deptPer + ", deptPerPhone=" + deptPerPhone + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", persId=" + persId + ", note=" + note + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
  210. }
  211. }