e5c98f78ea380e4fb14c6fe39101c9dcd00a1142.svn-base 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  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:BisInspWtgtRgstr
  9. *
  10. * @author lhc
  11. * @date 2020-9-18
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspWtgtRgstr extends BaseBean implements Serializable {
  15. // 主键ID
  16. @ApiModelProperty(value = "主键ID", name = "id")
  17. private String id;
  18. // 督查对象ID
  19. @ApiModelProperty(value = "督查对象ID", name = "objId")
  20. private String objId;
  21. // 单位名称
  22. @ApiModelProperty(value = "单位名称", name = "depName")
  23. private String depName;
  24. // 所在地行政区编码
  25. @ApiModelProperty(value = "所在地行政区编码", name = "adCode")
  26. private String adCode;
  27. // 所在地行政区
  28. @ApiModelProperty(value = "所在地行政区", name = "adName")
  29. private String adName;
  30. // 取水许可证号
  31. @ApiModelProperty(value = "取水许可证号", name = "wintCode")
  32. private String wintCode;
  33. // 联系人
  34. @ApiModelProperty(value = "联系人", name = "depPers")
  35. private String depPers;
  36. // 联系电话
  37. @ApiModelProperty(value = "联系电话", name = "depPersTel")
  38. private String depPersTel;
  39. // 单位地址
  40. @ApiModelProperty(value = "单位地址", name = "loc")
  41. private String loc;
  42. // 经度
  43. @ApiModelProperty(value = "经度", name = "centerX")
  44. private Double centerX;
  45. // 纬度
  46. @ApiModelProperty(value = "纬度", name = "centerY")
  47. private Double centerY;
  48. // 高德经度
  49. @ApiModelProperty(value = "高德经度", name = "gdX")
  50. private Double gdX;
  51. // 高德纬度
  52. @ApiModelProperty(value = "高德纬度", name = "gdY")
  53. private Double gdY;
  54. // 取水许可和水资源费征收状态
  55. @ApiModelProperty(value = "取水许可和水资源费征收状态", name = "payState")
  56. private String payState;
  57. // 计划用水和定额管理状态
  58. @ApiModelProperty(value = "计划用水和定额管理状态", name = "planState")
  59. private String planState;
  60. // 状态
  61. @ApiModelProperty(value = "状态", name = "state")
  62. private String state;
  63. // 创建人
  64. @ApiModelProperty(value = "创建人", name = "persId")
  65. private String persId;
  66. // 创建时间
  67. @ApiModelProperty(value = "创建时间", name = "intm")
  68. private Date intm;
  69. // 修改时间
  70. @ApiModelProperty(value = "修改时间", name = "uptm")
  71. private Date uptm;
  72. // 督查组ID
  73. @ApiModelProperty(value = "督查组ID", name = "groupId")
  74. private String groupId;
  75. // 数据状态(0:正常;9:删除)
  76. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  77. private String dataStat;
  78. @ApiModelProperty(value = "负责人", name = "utLead")
  79. private String utLead;
  80. @ApiModelProperty(value = "负责人电话", position = 19)
  81. private String principalTel;
  82. @ApiModelProperty(value = "修改时间", position = 20)
  83. private String note;
  84. //组名称
  85. private String groupName;
  86. public BisInspWtgtRgstr() {
  87. }
  88. public String getUtLead() {
  89. return utLead;
  90. }
  91. public void setUtLead(String utLead) {
  92. this.utLead = utLead;
  93. }
  94. public String getPrincipalTel() {
  95. return principalTel;
  96. }
  97. public void setPrincipalTel(String principalTel) {
  98. this.principalTel = principalTel;
  99. }
  100. public String getNote() {
  101. return note;
  102. }
  103. public void setNote(String note) {
  104. this.note = note;
  105. }
  106. public String getGroupName() {
  107. return groupName;
  108. }
  109. public void setGroupName(String groupName) {
  110. this.groupName = groupName;
  111. }
  112. public String getId() {
  113. return id;
  114. }
  115. public void setId(String id) {
  116. this.id = id;
  117. }
  118. public String getDepName() {
  119. return depName;
  120. }
  121. public void setDepName(String depName) {
  122. this.depName = depName;
  123. }
  124. public String getAdCode() {
  125. return adCode;
  126. }
  127. public void setAdCode(String adCode) {
  128. this.adCode = adCode;
  129. }
  130. public String getAdName() {
  131. return adName;
  132. }
  133. public void setAdName(String adName) {
  134. this.adName = adName;
  135. }
  136. public String getWintCode() {
  137. return wintCode;
  138. }
  139. public void setWintCode(String wintCode) {
  140. this.wintCode = wintCode;
  141. }
  142. public String getDepPers() {
  143. return depPers;
  144. }
  145. public void setDepPers(String depPers) {
  146. this.depPers = depPers;
  147. }
  148. public String getDepPersTel() {
  149. return depPersTel;
  150. }
  151. public void setDepPersTel(String depPersTel) {
  152. this.depPersTel = depPersTel;
  153. }
  154. public String getLoc() {
  155. return loc;
  156. }
  157. public void setLoc(String loc) {
  158. this.loc = loc;
  159. }
  160. public Double getCenterX() {
  161. return centerX;
  162. }
  163. public void setCenterX(Double centerX) {
  164. this.centerX = centerX;
  165. }
  166. public Double getCenterY() {
  167. return centerY;
  168. }
  169. public void setCenterY(Double centerY) {
  170. this.centerY = centerY;
  171. }
  172. public Double getGdX() {
  173. return gdX;
  174. }
  175. public void setGdX(Double gdX) {
  176. this.gdX = gdX;
  177. }
  178. public Double getGdY() {
  179. return gdY;
  180. }
  181. public void setGdY(Double gdY) {
  182. this.gdY = gdY;
  183. }
  184. public String getPayState() {
  185. return payState;
  186. }
  187. public void setPayState(String payState) {
  188. this.payState = payState;
  189. }
  190. public String getPlanState() {
  191. return planState;
  192. }
  193. public void setPlanState(String planState) {
  194. this.planState = planState;
  195. }
  196. public String getState() {
  197. return state;
  198. }
  199. public void setState(String state) {
  200. this.state = state;
  201. }
  202. public String getPersId() {
  203. return persId;
  204. }
  205. public void setPersId(String persId) {
  206. this.persId = persId;
  207. }
  208. public Date getIntm() {
  209. return intm;
  210. }
  211. public void setIntm(Date intm) {
  212. this.intm = intm;
  213. }
  214. public Date getUptm() {
  215. return uptm;
  216. }
  217. public void setUptm(Date uptm) {
  218. this.uptm = uptm;
  219. }
  220. @Override
  221. public String getGroupId() {
  222. return groupId;
  223. }
  224. @Override
  225. public void setGroupId(String groupId) {
  226. this.groupId = groupId;
  227. }
  228. public String getDataStat() {
  229. return dataStat;
  230. }
  231. public void setDataStat(String dataStat) {
  232. this.dataStat = dataStat;
  233. }
  234. @Override
  235. public String toString() {
  236. return "BisInspWtgtRgstr [" + "id=" + id + ", objId=" + objId + ", depName=" + depName + ", adCode=" + adCode + ", adName=" + adName + ", wintCode=" + wintCode + ", depPers=" + depPers + ", depPersTel=" + depPersTel + ", loc=" + loc + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", payState=" + payState + ", planState=" + planState + ", state=" + state + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", groupId=" + groupId + ", dataStat=" + dataStat + "]";
  237. }
  238. }