db4e1f53dc64e6a2efeef4e8775d8b51afbe6a6e.svn-base 6.5 KB

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