5e997e36c7171788d0143aadbda06e392deab304.svn-base 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import cn.com.goldenwater.core.model.BaseBean;
  5. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * entity:AttJspwiuBase
  9. *
  10. * @author lhc
  11. * @date 2023年3月20日
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class AttJspwiuBase extends BaseBean implements Serializable {
  15. // ID
  16. @ApiModelProperty(value="ID",name="id")
  17. private String id;
  18. // 单位名称
  19. @ApiModelProperty(value="单位名称",name="name")
  20. private String name;
  21. // 行政区划编码
  22. @ApiModelProperty(value="行政区划编码",name="adCode")
  23. private String adCode;
  24. // 行政区划
  25. @ApiModelProperty(value="行政区划",name="adName")
  26. private String adName;
  27. // 统一社会信用代码
  28. @ApiModelProperty(value="统一社会信用代码",name="sctcd")
  29. private String sctcd;
  30. // 单位类型 1企业 2机关 3学校 4医院 5宾馆 6高校 7其他
  31. @ApiModelProperty(value="单位类型 1企业 2机关 3学校 4医院 5宾馆 6高校 7其他",name="depType")
  32. private String depType;
  33. // 行业类型 1节水型 2非节水型
  34. @ApiModelProperty(value="行业类型 1节水型 2非节水型",name="tmpType")
  35. private String tmpType;
  36. // 注册地址
  37. @ApiModelProperty(value="注册地址",name="regAddr")
  38. private String regAddr;
  39. // 经营地址
  40. @ApiModelProperty(value="经营地址",name="busAddr")
  41. private String busAddr;
  42. // 联系人
  43. @ApiModelProperty(value="联系人",name="conPers")
  44. private String conPers;
  45. // 联系人电话
  46. @ApiModelProperty(value="联系人电话",name="conPersTel")
  47. private String conPersTel;
  48. // 负责人
  49. @ApiModelProperty(value="负责人",name="keyPers")
  50. private String keyPers;
  51. // 经度
  52. @ApiModelProperty(value="经度",name="centerX")
  53. private Double centerX;
  54. // 纬度
  55. @ApiModelProperty(value="纬度",name="centerY")
  56. private Double centerY;
  57. // 高德经度
  58. @ApiModelProperty(value="高德经度",name="gdX")
  59. private Double gdX;
  60. // 高德纬度
  61. @ApiModelProperty(value="高德纬度",name="gdY")
  62. private Double gdY;
  63. // 记录人员ID
  64. @ApiModelProperty(value="记录人员ID",name="persId")
  65. private String persId;
  66. // 创建时间
  67. @ApiModelProperty(value="创建时间",name="intm")
  68. private Date intm;
  69. // 最后修改时间
  70. @ApiModelProperty(value="最后修改时间",name="uptm")
  71. private Date uptm;
  72. // 备注
  73. @ApiModelProperty(value="备注",name="note")
  74. private String note;
  75. // 数据状态
  76. @ApiModelProperty(value="数据状态",name="dataStat")
  77. private String dataStat;
  78. public AttJspwiuBase() {
  79. }
  80. public String getId() {
  81. return id;
  82. }
  83. public void setId(String id) {
  84. this.id = id;
  85. }
  86. public String getName() {
  87. return name;
  88. }
  89. public void setName(String name) {
  90. this.name = name;
  91. }
  92. public String getAdCode() {
  93. return adCode;
  94. }
  95. public void setAdCode(String adCode) {
  96. this.adCode = adCode;
  97. }
  98. public String getAdName() {
  99. return adName;
  100. }
  101. public void setAdName(String adName) {
  102. this.adName = adName;
  103. }
  104. public String getSctcd() {
  105. return sctcd;
  106. }
  107. public void setSctcd(String sctcd) {
  108. this.sctcd = sctcd;
  109. }
  110. public String getDepType() {
  111. return depType;
  112. }
  113. public void setDepType(String depType) {
  114. this.depType = depType;
  115. }
  116. public String getTmpType() {
  117. return tmpType;
  118. }
  119. public void setTmpType(String tmpType) {
  120. this.tmpType = tmpType;
  121. }
  122. public String getRegAddr() {
  123. return regAddr;
  124. }
  125. public void setRegAddr(String regAddr) {
  126. this.regAddr = regAddr;
  127. }
  128. public String getBusAddr() {
  129. return busAddr;
  130. }
  131. public void setBusAddr(String busAddr) {
  132. this.busAddr = busAddr;
  133. }
  134. public String getConPers() {
  135. return conPers;
  136. }
  137. public void setConPers(String conPers) {
  138. this.conPers = conPers;
  139. }
  140. public String getConPersTel() {
  141. return conPersTel;
  142. }
  143. public void setConPersTel(String conPersTel) {
  144. this.conPersTel = conPersTel;
  145. }
  146. public String getKeyPers() {
  147. return keyPers;
  148. }
  149. public void setKeyPers(String keyPers) {
  150. this.keyPers = keyPers;
  151. }
  152. public Double getCenterX() {
  153. return centerX;
  154. }
  155. public void setCenterX(Double centerX) {
  156. this.centerX = centerX;
  157. }
  158. public Double getCenterY() {
  159. return centerY;
  160. }
  161. public void setCenterY(Double centerY) {
  162. this.centerY = centerY;
  163. }
  164. public Double getGdX() {
  165. return gdX;
  166. }
  167. public void setGdX(Double gdX) {
  168. this.gdX = gdX;
  169. }
  170. public Double getGdY() {
  171. return gdY;
  172. }
  173. public void setGdY(Double gdY) {
  174. this.gdY = gdY;
  175. }
  176. public String getPersId() {
  177. return persId;
  178. }
  179. public void setPersId(String persId) {
  180. this.persId = persId;
  181. }
  182. public Date getIntm() {
  183. return intm;
  184. }
  185. public void setIntm(Date intm) {
  186. this.intm = intm;
  187. }
  188. public Date getUptm() {
  189. return uptm;
  190. }
  191. public void setUptm(Date uptm) {
  192. this.uptm = uptm;
  193. }
  194. public String getNote() {
  195. return note;
  196. }
  197. public void setNote(String note) {
  198. this.note = note;
  199. }
  200. public String getDataStat() {
  201. return dataStat;
  202. }
  203. public void setDataStat(String dataStat) {
  204. this.dataStat = dataStat;
  205. }
  206. @Override
  207. public String toString() {
  208. return "AttJspwiuBase [" + "id=" + id + ", name=" + name + ", adCode=" + adCode + ", adName=" + adName + ", sctcd=" + sctcd + ", depType=" + depType + ", tmpType=" + tmpType + ", regAddr=" + regAddr + ", busAddr=" + busAddr + ", conPers=" + conPers + ", conPersTel=" + conPersTel + ", keyPers=" + keyPers + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + ", dataStat=" + dataStat + "]";
  209. }
  210. }