5746374c56438601aa3c032fb466c6069eac77d4.svn-base 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * entity:BisInspRvgmRgstr
  9. *
  10. * @author lhc
  11. * @date 2021-4-1
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspRvgmRgstr 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 = "loc")
  32. private String loc;
  33. // 单位负责人
  34. @ApiModelProperty(value = "单位负责人", name = "utLead")
  35. private String utLead;
  36. // 负责人电话
  37. @ApiModelProperty(value = "负责人电话", name = "principalTel")
  38. private String principalTel;
  39. // 联系人
  40. @ApiModelProperty(value = "联系人", name = "depPers")
  41. private String depPers;
  42. // 联系电话
  43. @ApiModelProperty(value = "联系电话", name = "depPersTel")
  44. private String depPersTel;
  45. // 备注
  46. @ApiModelProperty(value = "备注", name = "note")
  47. private String note;
  48. // 督查状态(0:未督查;1:督查中;2:已督查)
  49. @ApiModelProperty(value = "督查状态(0:未督查;1:督查中;2:已督查)", name = "state")
  50. private String state;
  51. // 河湖长制度建设状态
  52. @ApiModelProperty(value = "河湖长制度建设状态", name = "sysStat")
  53. private String sysStat;
  54. // 河湖长制度行政许可管理检查
  55. @ApiModelProperty(value = "河湖长制度行政许可管理检查", name = "admStat")
  56. private String admStat;
  57. // 河湖长制度-查基础工作检查状态
  58. @ApiModelProperty(value = "河湖长制度-查基础工作检查状态", name = "bswkStat")
  59. private String bswkStat;
  60. // 河湖长制度-人员经费保障检查
  61. @ApiModelProperty(value = "河湖长制度-人员经费保障检查", name = "costStat")
  62. private String costStat;
  63. // 河湖长制度-其他检查
  64. @ApiModelProperty(value = "河湖长制度-其他检查", name = "othrStat")
  65. private String othrStat;
  66. // 经度
  67. @ApiModelProperty(value = "经度", name = "centerX")
  68. private Double centerX;
  69. // 纬度
  70. @ApiModelProperty(value = "纬度", name = "centerY")
  71. private Double centerY;
  72. // 高德经度
  73. @ApiModelProperty(value = "高德经度", name = "gdX")
  74. private Double gdX;
  75. // 高德纬度
  76. @ApiModelProperty(value = "高德纬度", name = "gdY")
  77. private Double gdY;
  78. // 创建人
  79. @ApiModelProperty(value = "创建人", name = "persId")
  80. private String persId;
  81. // 创建时间
  82. @ApiModelProperty(value = "创建时间", name = "intm")
  83. private Date intm;
  84. // 修改时间
  85. @ApiModelProperty(value = "修改时间", name = "uptm")
  86. private Date uptm;
  87. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  88. private String dataStat;
  89. @ApiModelProperty(value = "行政区划", name = "adFullName")
  90. private String adFullName;
  91. public BisInspRvgmRgstr() {
  92. }
  93. public String getAdFullName() {
  94. return adFullName;
  95. }
  96. public void setAdFullName(String adFullName) {
  97. this.adFullName = adFullName;
  98. }
  99. public String getId() {
  100. return id;
  101. }
  102. public void setId(String id) {
  103. this.id = id;
  104. }
  105. public String getObjId() {
  106. return objId;
  107. }
  108. public void setObjId(String objId) {
  109. this.objId = objId;
  110. }
  111. public String getDepName() {
  112. return depName;
  113. }
  114. public void setDepName(String depName) {
  115. this.depName = depName;
  116. }
  117. public String getAdCode() {
  118. return adCode;
  119. }
  120. public void setAdCode(String adCode) {
  121. this.adCode = adCode;
  122. }
  123. public String getAdName() {
  124. return adName;
  125. }
  126. public void setAdName(String adName) {
  127. this.adName = adName;
  128. }
  129. public String getLoc() {
  130. return loc;
  131. }
  132. public void setLoc(String loc) {
  133. this.loc = loc;
  134. }
  135. public String getUtLead() {
  136. return utLead;
  137. }
  138. public void setUtLead(String utLead) {
  139. this.utLead = utLead;
  140. }
  141. public String getPrincipalTel() {
  142. return principalTel;
  143. }
  144. public void setPrincipalTel(String principalTel) {
  145. this.principalTel = principalTel;
  146. }
  147. public String getDepPers() {
  148. return depPers;
  149. }
  150. public void setDepPers(String depPers) {
  151. this.depPers = depPers;
  152. }
  153. public String getDepPersTel() {
  154. return depPersTel;
  155. }
  156. public void setDepPersTel(String depPersTel) {
  157. this.depPersTel = depPersTel;
  158. }
  159. public String getNote() {
  160. return note;
  161. }
  162. public void setNote(String note) {
  163. this.note = note;
  164. }
  165. public String getState() {
  166. return state;
  167. }
  168. public void setState(String state) {
  169. this.state = state;
  170. }
  171. public String getSysStat() {
  172. return sysStat;
  173. }
  174. public void setSysStat(String sysStat) {
  175. this.sysStat = sysStat;
  176. }
  177. public String getAdmStat() {
  178. return admStat;
  179. }
  180. public void setAdmStat(String admStat) {
  181. this.admStat = admStat;
  182. }
  183. public String getBswkStat() {
  184. return bswkStat;
  185. }
  186. public void setBswkStat(String bswkStat) {
  187. this.bswkStat = bswkStat;
  188. }
  189. public String getCostStat() {
  190. return costStat;
  191. }
  192. public void setCostStat(String costStat) {
  193. this.costStat = costStat;
  194. }
  195. public String getOthrStat() {
  196. return othrStat;
  197. }
  198. public void setOthrStat(String othrStat) {
  199. this.othrStat = othrStat;
  200. }
  201. public Double getCenterX() {
  202. return centerX;
  203. }
  204. public void setCenterX(Double centerX) {
  205. this.centerX = centerX;
  206. }
  207. public Double getCenterY() {
  208. return centerY;
  209. }
  210. public void setCenterY(Double centerY) {
  211. this.centerY = centerY;
  212. }
  213. public Double getGdX() {
  214. return gdX;
  215. }
  216. public void setGdX(Double gdX) {
  217. this.gdX = gdX;
  218. }
  219. public Double getGdY() {
  220. return gdY;
  221. }
  222. public void setGdY(Double gdY) {
  223. this.gdY = gdY;
  224. }
  225. public String getPersId() {
  226. return persId;
  227. }
  228. public void setPersId(String persId) {
  229. this.persId = persId;
  230. }
  231. public Date getIntm() {
  232. return intm;
  233. }
  234. public void setIntm(Date intm) {
  235. this.intm = intm;
  236. }
  237. public Date getUptm() {
  238. return uptm;
  239. }
  240. public void setUptm(Date uptm) {
  241. this.uptm = uptm;
  242. }
  243. public String getDataStat() {
  244. return dataStat;
  245. }
  246. public void setDataStat(String dataStat) {
  247. this.dataStat = dataStat;
  248. }
  249. @Override
  250. public String toString() {
  251. return "BisInspRvgmRgstr [" + "id=" + id + ", objId=" + objId + ", depName=" + depName + ", adCode=" + adCode + ", adName=" + adName + ", loc=" + loc + ", utLead=" + utLead + ", principalTel=" + principalTel + ", depPers=" + depPers + ", depPersTel=" + depPersTel + ", note=" + note + ", state=" + state + ", sysStat=" + sysStat + ", admStat=" + admStat + ", bswkStat=" + bswkStat + ", costStat=" + costStat + ", othrStat=" + othrStat + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
  252. }
  253. }