1935e7182a39cd57fcffb3bd215638c4c9ddbe7e.svn-base 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  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:BisInspWrmWtuntPblm
  9. *
  10. * @author lune
  11. * @date 2020-8-31
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class BisInspWrmWtuntPblm extends BaseBean implements Serializable {
  15. @ApiModelProperty(value="主键ID", position = 1)
  16. private String id;
  17. @ApiModelProperty(value="*登记表ID", position = 2)
  18. private String rgstrId;
  19. @ApiModelProperty(value="*督查类型(1:水资源管理;2:节约用水)", position = 3)
  20. private String objType;
  21. @ApiModelProperty(value="*督查对象名称", position = 4)
  22. private String objNm;
  23. @ApiModelProperty(value="*行政区划全称", position = 5)
  24. private String adName;
  25. @ApiModelProperty(value="*行政区编码", position = 6)
  26. private String adCode;
  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="问题类型(11:江河流域分水方面;12:生态流量管控方面;13:取用水总量控制方面;14:取水口管理方面;15:地下水超采治理方面;16:饮用水水源管理方面;17:其他;21:县级行政区节约用水管理方面;22:节水评价开展方面;23:用水单位计划用水和定额管理执行方面;24:节水型单位建设方面;25:其他;)", position = 11)
  36. private String pblmType;
  37. @ApiModelProperty(value="问题描述", position = 12)
  38. private String pblmDesc;
  39. @ApiModelProperty(value="整改措施", position = 13)
  40. private String rectMsrs;
  41. @ApiModelProperty(value="是否完成整改(1:是;2:否;)", position = 14)
  42. private String rectConc;
  43. @ApiModelProperty(value="未完成整改原因", position = 15)
  44. private String rectOpin;
  45. @ApiModelProperty(value="被检查单位", position = 16)
  46. private String bChkUnit;
  47. @ApiModelProperty(value="联系人", position = 17)
  48. private String contact;
  49. @ApiModelProperty(value="负责人", position = 18)
  50. private String principal;
  51. @ApiModelProperty(value="电话", position = 19)
  52. private String principalTel;
  53. @ApiModelProperty(value="创建人", position = 20)
  54. private String persId;
  55. @ApiModelProperty(value="督查组ID", position = 21)
  56. private String groupId;
  57. @ApiModelProperty(value="创建时间", position = 22)
  58. private Date intm;
  59. @ApiModelProperty(value="更新时间", position = 23)
  60. private Date uptm;
  61. public BisInspWrmWtuntPblm() {
  62. }
  63. public String getId() {
  64. return id;
  65. }
  66. public void setId(String id) {
  67. this.id = id;
  68. }
  69. @Override
  70. public String getRgstrId() {
  71. return rgstrId;
  72. }
  73. @Override
  74. public void setRgstrId(String rgstrId) {
  75. this.rgstrId = rgstrId;
  76. }
  77. public String getObjType() {
  78. return objType;
  79. }
  80. public void setObjType(String objType) {
  81. this.objType = objType;
  82. }
  83. public String getObjNm() {
  84. return objNm;
  85. }
  86. public void setObjNm(String objNm) {
  87. this.objNm = objNm;
  88. }
  89. public String getAdName() {
  90. return adName;
  91. }
  92. public void setAdName(String adName) {
  93. this.adName = adName;
  94. }
  95. public String getAdCode() {
  96. return adCode;
  97. }
  98. public void setAdCode(String adCode) {
  99. this.adCode = adCode;
  100. }
  101. public Double getCenterX() {
  102. return centerX;
  103. }
  104. public void setCenterX(Double centerX) {
  105. this.centerX = centerX;
  106. }
  107. public Double getCenterY() {
  108. return centerY;
  109. }
  110. public void setCenterY(Double centerY) {
  111. this.centerY = centerY;
  112. }
  113. public Double getGdX() {
  114. return gdX;
  115. }
  116. public void setGdX(Double gdX) {
  117. this.gdX = gdX;
  118. }
  119. public Double getGdY() {
  120. return gdY;
  121. }
  122. public void setGdY(Double gdY) {
  123. this.gdY = gdY;
  124. }
  125. public String getPblmType() {
  126. return pblmType;
  127. }
  128. public void setPblmType(String pblmType) {
  129. this.pblmType = pblmType;
  130. }
  131. public String getPblmDesc() {
  132. return pblmDesc;
  133. }
  134. public void setPblmDesc(String pblmDesc) {
  135. this.pblmDesc = pblmDesc;
  136. }
  137. public String getRectMsrs() {
  138. return rectMsrs;
  139. }
  140. public void setRectMsrs(String rectMsrs) {
  141. this.rectMsrs = rectMsrs;
  142. }
  143. public String getRectConc() {
  144. return rectConc;
  145. }
  146. public void setRectConc(String rectConc) {
  147. this.rectConc = rectConc;
  148. }
  149. public String getRectOpin() {
  150. return rectOpin;
  151. }
  152. public void setRectOpin(String rectOpin) {
  153. this.rectOpin = rectOpin;
  154. }
  155. public String getBChkUnit() {
  156. return bChkUnit;
  157. }
  158. public void setBChkUnit(String bChkUnit) {
  159. this.bChkUnit = bChkUnit;
  160. }
  161. public String getContact() {
  162. return contact;
  163. }
  164. public void setContact(String contact) {
  165. this.contact = contact;
  166. }
  167. public String getPrincipal() {
  168. return principal;
  169. }
  170. public void setPrincipal(String principal) {
  171. this.principal = principal;
  172. }
  173. public String getPrincipalTel() {
  174. return principalTel;
  175. }
  176. public void setPrincipalTel(String principalTel) {
  177. this.principalTel = principalTel;
  178. }
  179. public String getPersId() {
  180. return persId;
  181. }
  182. public void setPersId(String persId) {
  183. this.persId = persId;
  184. }
  185. @Override
  186. public String getGroupId() {
  187. return groupId;
  188. }
  189. @Override
  190. public void setGroupId(String groupId) {
  191. this.groupId = groupId;
  192. }
  193. public Date getIntm() {
  194. return intm;
  195. }
  196. public void setIntm(Date intm) {
  197. this.intm = intm;
  198. }
  199. public Date getUptm() {
  200. return uptm;
  201. }
  202. public void setUptm(Date uptm) {
  203. this.uptm = uptm;
  204. }
  205. @Override
  206. public String toString() {
  207. return "BisInspWrmWtuntPblm [" + "id=" + id + ", rgstrId=" + rgstrId + ", objType=" + objType + ", objNm=" + objNm + ", adName=" + adName + ", adCode=" + adCode + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", pblmType=" + pblmType + ", pblmDesc=" + pblmDesc + ", rectMsrs=" + rectMsrs + ", rectConc=" + rectConc + ", rectOpin=" + rectOpin + ", bChkUnit=" + bChkUnit + ", contact=" + contact + ", principal=" + principal + ", principalTel=" + principalTel + ", persId=" + persId + ", groupId=" + groupId + ", intm=" + intm + ", uptm=" + uptm + "]";
  208. }
  209. }