637e9b6b4ee23d39e5efc7aa429856166c930b39.svn-base 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  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:BisInspWrmRgstr
  9. *
  10. * @author lune
  11. * @date 2020-8-18
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspWrmRgstr extends BaseBean implements Serializable {
  15. @ApiModelProperty(value = "主键id", position = 1)
  16. private String id;
  17. @ApiModelProperty(value = "督查对象ID", position = 2)
  18. private String objId;
  19. @ApiModelProperty(value = "行政区编码", position = 3)
  20. private String adCode;
  21. @ApiModelProperty(value = "行政区划名称", position = 4)
  22. private String adName;
  23. @ApiModelProperty(value = "行政区划全称", position = 5)
  24. private String adFullName;
  25. @ApiModelProperty(value = "详细地址", position = 6)
  26. private String loc;
  27. @ApiModelProperty(value = "经度", position = 7)
  28. private Double centerX;
  29. @ApiModelProperty(value = "纬度", position = 8)
  30. private Double centerY;
  31. @ApiModelProperty(value = "高德经度", position = 9)
  32. private Double gdX;
  33. @ApiModelProperty(value = "高德纬度", position = 10)
  34. private Double gdY;
  35. @ApiModelProperty(value = "被检查单位名称", position = 11)
  36. private String bChkUnit;
  37. @ApiModelProperty(value = "联系人", position = 12)
  38. private String contact;
  39. @ApiModelProperty(value = "联系人电话", position = 13)
  40. private String contactTel;
  41. @ApiModelProperty(value = "负责人", position = 14)
  42. private String principal;
  43. @ApiModelProperty(value = "负责人电话", position = 15)
  44. private String principalTel;
  45. @ApiModelProperty(value = "备注", position = 16)
  46. private String note;
  47. @ApiModelProperty(value = "检查单位", position = 17)
  48. private String chkUnit;
  49. @ApiModelProperty(value = "检查人员", position = 18)
  50. private String chkPers;
  51. @ApiModelProperty(value = "检查时间", position = 19)
  52. private Date chkTm;
  53. @ApiModelProperty(value = "取用水管控及地下水监管情况填报状态(0:未填报;1:未完成;2:已完成)", position = 20)
  54. private String intInfoStat;
  55. @ApiModelProperty(value = "取水口取水监管情况填报状态(0:未填报;1:未完成;2:已完成)", position = 21)
  56. private String wintStat;
  57. @ApiModelProperty(value = "创建人", position = 22)
  58. private String persId;
  59. @ApiModelProperty(value = "督查组ID", position = 23)
  60. private String groupId;
  61. @ApiModelProperty(value = "创建时间", position = 24)
  62. private Date intm;
  63. @ApiModelProperty(value = "更新时间", position = 25)
  64. private Date uptm;
  65. @ApiModelProperty(value = "督查状态(0:未督查;1:督查中;2:已督查)", position = 26)
  66. private String state;
  67. public BisInspWrmRgstr() {
  68. }
  69. public String getId() {
  70. return id;
  71. }
  72. public void setId(String id) {
  73. this.id = id;
  74. }
  75. @Override
  76. public String getObjId() {
  77. return objId;
  78. }
  79. @Override
  80. public void setObjId(String objId) {
  81. this.objId = objId;
  82. }
  83. public String getAdCode() {
  84. return adCode;
  85. }
  86. public void setAdCode(String adCode) {
  87. this.adCode = adCode;
  88. }
  89. public String getAdName() {
  90. return adName;
  91. }
  92. public void setAdName(String adName) {
  93. this.adName = adName;
  94. }
  95. public String getAdFullName() {
  96. return adFullName;
  97. }
  98. public void setAdFullName(String adFullName) {
  99. this.adFullName = adFullName;
  100. }
  101. public String getLoc() {
  102. return loc;
  103. }
  104. public void setLoc(String loc) {
  105. this.loc = loc;
  106. }
  107. public Double getCenterX() {
  108. return centerX;
  109. }
  110. public void setCenterX(Double centerX) {
  111. this.centerX = centerX;
  112. }
  113. public Double getCenterY() {
  114. return centerY;
  115. }
  116. public void setCenterY(Double centerY) {
  117. this.centerY = centerY;
  118. }
  119. public Double getGdX() {
  120. return gdX;
  121. }
  122. public void setGdX(Double gdX) {
  123. this.gdX = gdX;
  124. }
  125. public Double getGdY() {
  126. return gdY;
  127. }
  128. public void setGdY(Double gdY) {
  129. this.gdY = gdY;
  130. }
  131. public String getBChkUnit() {
  132. return bChkUnit;
  133. }
  134. public void setBChkUnit(String bChkUnit) {
  135. this.bChkUnit = bChkUnit;
  136. }
  137. public String getContact() {
  138. return contact;
  139. }
  140. public void setContact(String contact) {
  141. this.contact = contact;
  142. }
  143. public String getContactTel() {
  144. return contactTel;
  145. }
  146. public void setContactTel(String contactTel) {
  147. this.contactTel = contactTel;
  148. }
  149. public String getPrincipal() {
  150. return principal;
  151. }
  152. public void setPrincipal(String principal) {
  153. this.principal = principal;
  154. }
  155. public String getPrincipalTel() {
  156. return principalTel;
  157. }
  158. public void setPrincipalTel(String principalTel) {
  159. this.principalTel = principalTel;
  160. }
  161. public String getNote() {
  162. return note;
  163. }
  164. public void setNote(String note) {
  165. this.note = note;
  166. }
  167. public String getChkUnit() {
  168. return chkUnit;
  169. }
  170. public void setChkUnit(String chkUnit) {
  171. this.chkUnit = chkUnit;
  172. }
  173. public String getChkPers() {
  174. return chkPers;
  175. }
  176. public void setChkPers(String chkPers) {
  177. this.chkPers = chkPers;
  178. }
  179. public Date getChkTm() {
  180. return chkTm;
  181. }
  182. public void setChkTm(Date chkTm) {
  183. this.chkTm = chkTm;
  184. }
  185. public String getIntInfoStat() {
  186. return intInfoStat;
  187. }
  188. public void setIntInfoStat(String intInfoStat) {
  189. this.intInfoStat = intInfoStat;
  190. }
  191. public String getWintStat() {
  192. return wintStat;
  193. }
  194. public void setWintStat(String wintStat) {
  195. this.wintStat = wintStat;
  196. }
  197. public String getPersId() {
  198. return persId;
  199. }
  200. public void setPersId(String persId) {
  201. this.persId = persId;
  202. }
  203. @Override
  204. public String getGroupId() {
  205. return groupId;
  206. }
  207. @Override
  208. public void setGroupId(String groupId) {
  209. this.groupId = groupId;
  210. }
  211. public Date getIntm() {
  212. return intm;
  213. }
  214. public void setIntm(Date intm) {
  215. this.intm = intm;
  216. }
  217. public Date getUptm() {
  218. return uptm;
  219. }
  220. public void setUptm(Date uptm) {
  221. this.uptm = uptm;
  222. }
  223. public String getState() {
  224. return state;
  225. }
  226. public void setState(String state) {
  227. this.state = state;
  228. }
  229. @Override
  230. public String toString() {
  231. return "BisInspWrmRgstr [" + "id=" + id + ", objId=" + objId + ", adCode=" + adCode + ", adName=" + adName + ", adFullName=" + adFullName + ", loc=" + loc + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", bChkUnit=" + bChkUnit + ", contact=" + contact + ", contactTel=" + contactTel + ", principal=" + principal + ", principalTel=" + principalTel + ", note=" + note + ", chkUnit=" + chkUnit + ", chkPers=" + chkPers + ", chkTm=" + chkTm + ", intInfoStat=" + intInfoStat + ", wintStat=" + wintStat + ", persId=" + persId + ", groupId=" + groupId + ", intm=" + intm + ", uptm=" + uptm + ", state=" + state + "]";
  232. }
  233. }