897ffae644207a47886619241cb2aeb01b67ad6e.svn-base 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  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:BisInspChmclsRgstr
  9. *
  10. * @author lhc
  11. * @date 2021-5-13
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspChmclsRgstr 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. @ApiModelProperty(value = "所在地行政区", name = "adFullName")
  31. private String adFullName;
  32. // 行政区等级 3市 4 县
  33. @ApiModelProperty(value = "行政区等级 3市 4 县", name = "adGrad")
  34. private String adGrad;
  35. // 地址
  36. @ApiModelProperty(value = "地址", name = "loc")
  37. private String loc;
  38. // 联系人
  39. @ApiModelProperty(value = "联系人", name = "depPers")
  40. private String depPers;
  41. // 联系电话
  42. @ApiModelProperty(value = "联系电话", name = "depPersTel")
  43. private String depPersTel;
  44. // 单位负责人
  45. @ApiModelProperty(value = "单位负责人", name = "utLead")
  46. private String utLead;
  47. // 负责人电话
  48. @ApiModelProperty(value = "负责人电话", name = "principalTel")
  49. private String principalTel;
  50. // 备注
  51. @ApiModelProperty(value = "备注", name = "note")
  52. private String note;
  53. // 督查状态(0:未督查;1:督查中;2:已督查)
  54. @ApiModelProperty(value = "督查状态(0:未督查;1:督查中;2:已督查)", name = "state")
  55. private String state;
  56. // 部门工作落实情况状态
  57. @ApiModelProperty(value = "部门工作落实情况状态", name = "depwkState")
  58. private String depwkState;
  59. @ApiModelProperty(value = "部门工作落实情况状态", name = "useUnitNum")
  60. private Integer useUnitNum;
  61. // 经度
  62. @ApiModelProperty(value = "经度", name = "centerX")
  63. private Double centerX;
  64. // 纬度
  65. @ApiModelProperty(value = "纬度", name = "centerY")
  66. private Double centerY;
  67. // 高德经度
  68. @ApiModelProperty(value = "高德经度", name = "gdX")
  69. private Double gdX;
  70. // 高德纬度
  71. @ApiModelProperty(value = "高德纬度", name = "gdY")
  72. private Double gdY;
  73. // 创建时间
  74. @ApiModelProperty(value = "创建时间", name = "intm")
  75. private Date intm;
  76. // 修改时间
  77. @ApiModelProperty(value = "修改时间", name = "uptm")
  78. private Date uptm;
  79. // 数据状态(0:正常;9:删除)
  80. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  81. private String dataStat;
  82. public BisInspChmclsRgstr() {
  83. }
  84. public String getAdFullName() {
  85. return adFullName;
  86. }
  87. public void setAdFullName(String adFullName) {
  88. this.adFullName = adFullName;
  89. }
  90. public Integer getUseUnitNum() {
  91. return useUnitNum;
  92. }
  93. public void setUseUnitNum(Integer useUnitNum) {
  94. this.useUnitNum = useUnitNum;
  95. }
  96. public String getId() {
  97. return id;
  98. }
  99. public void setId(String id) {
  100. this.id = id;
  101. }
  102. public String getObjId() {
  103. return objId;
  104. }
  105. public void setObjId(String objId) {
  106. this.objId = objId;
  107. }
  108. public String getDepName() {
  109. return depName;
  110. }
  111. public void setDepName(String depName) {
  112. this.depName = depName;
  113. }
  114. public String getAdCode() {
  115. return adCode;
  116. }
  117. public void setAdCode(String adCode) {
  118. this.adCode = adCode;
  119. }
  120. public String getAdName() {
  121. return adName;
  122. }
  123. public void setAdName(String adName) {
  124. this.adName = adName;
  125. }
  126. public String getAdGrad() {
  127. return adGrad;
  128. }
  129. public void setAdGrad(String adGrad) {
  130. this.adGrad = adGrad;
  131. }
  132. public String getLoc() {
  133. return loc;
  134. }
  135. public void setLoc(String loc) {
  136. this.loc = loc;
  137. }
  138. public String getDepPers() {
  139. return depPers;
  140. }
  141. public void setDepPers(String depPers) {
  142. this.depPers = depPers;
  143. }
  144. public String getDepPersTel() {
  145. return depPersTel;
  146. }
  147. public void setDepPersTel(String depPersTel) {
  148. this.depPersTel = depPersTel;
  149. }
  150. public String getUtLead() {
  151. return utLead;
  152. }
  153. public void setUtLead(String utLead) {
  154. this.utLead = utLead;
  155. }
  156. public String getPrincipalTel() {
  157. return principalTel;
  158. }
  159. public void setPrincipalTel(String principalTel) {
  160. this.principalTel = principalTel;
  161. }
  162. public String getNote() {
  163. return note;
  164. }
  165. public void setNote(String note) {
  166. this.note = note;
  167. }
  168. public String getState() {
  169. return state;
  170. }
  171. public void setState(String state) {
  172. this.state = state;
  173. }
  174. public String getDepwkState() {
  175. return depwkState;
  176. }
  177. public void setDepwkState(String depwkState) {
  178. this.depwkState = depwkState;
  179. }
  180. public Double getCenterX() {
  181. return centerX;
  182. }
  183. public void setCenterX(Double centerX) {
  184. this.centerX = centerX;
  185. }
  186. public Double getCenterY() {
  187. return centerY;
  188. }
  189. public void setCenterY(Double centerY) {
  190. this.centerY = centerY;
  191. }
  192. public Double getGdX() {
  193. return gdX;
  194. }
  195. public void setGdX(Double gdX) {
  196. this.gdX = gdX;
  197. }
  198. public Double getGdY() {
  199. return gdY;
  200. }
  201. public void setGdY(Double gdY) {
  202. this.gdY = gdY;
  203. }
  204. public Date getIntm() {
  205. return intm;
  206. }
  207. public void setIntm(Date intm) {
  208. this.intm = intm;
  209. }
  210. public Date getUptm() {
  211. return uptm;
  212. }
  213. public void setUptm(Date uptm) {
  214. this.uptm = uptm;
  215. }
  216. public String getDataStat() {
  217. return dataStat;
  218. }
  219. public void setDataStat(String dataStat) {
  220. this.dataStat = dataStat;
  221. }
  222. @Override
  223. public String toString() {
  224. return "BisInspChmclsRgstr [" + "id=" + id + ", objId=" + objId + ", depName=" + depName + ", adCode=" + adCode + ", adName=" + adName + ", adGrad=" + adGrad + ", loc=" + loc + ", depPers=" + depPers + ", depPersTel=" + depPersTel + ", utLead=" + utLead + ", principalTel=" + principalTel + ", note=" + note + ", state=" + state + ", depwkState=" + depwkState + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
  225. }
  226. }