6f7d33e9a1708fbfcc3ba484b86a5cb9af68d12b.svn-base 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  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:AttJspwiu2024Base
  9. *
  10. * @author lhc
  11. * @date 2024-3-4
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class AttJspwiu2024Base 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="leglPers")
  23. private String leglPers;
  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="idnt")
  32. private String idnt;
  33. // 单位地址
  34. @ApiModelProperty(value="单位地址",name="busAddr")
  35. private String busAddr;
  36. // 所属行业
  37. @ApiModelProperty(value="所属行业",name="industry")
  38. private String industry;
  39. // 行业代码
  40. @ApiModelProperty(value="行业代码",name="industryCode")
  41. private String industryCode;
  42. // 主要产品
  43. @ApiModelProperty(value="主要产品",name="majorProduct")
  44. private String majorProduct;
  45. // 取水用途
  46. @ApiModelProperty(value="取水用途",name="waterIntake")
  47. private String waterIntake;
  48. // 联系人
  49. @ApiModelProperty(value="联系人",name="conPers")
  50. private String conPers;
  51. // 联系人电话
  52. @ApiModelProperty(value="联系人电话",name="conPersTel")
  53. private String conPersTel;
  54. // 经度
  55. @ApiModelProperty(value="经度",name="centerX")
  56. private Double centerX;
  57. // 纬度
  58. @ApiModelProperty(value="纬度",name="centerY")
  59. private Double centerY;
  60. // 高德经度
  61. @ApiModelProperty(value="高德经度",name="gdX")
  62. private Double gdX;
  63. // 高德纬度
  64. @ApiModelProperty(value="高德纬度",name="gdY")
  65. private Double gdY;
  66. // 记录人员ID
  67. @ApiModelProperty(value="记录人员ID",name="persId")
  68. private String persId;
  69. // 创建时间
  70. @ApiModelProperty(value="创建时间",name="intm")
  71. private Date intm;
  72. // 最后修改时间
  73. @ApiModelProperty(value="最后修改时间",name="uptm")
  74. private Date uptm;
  75. // 备注
  76. @ApiModelProperty(value="备注",name="note")
  77. private String note;
  78. // 数据状态
  79. @ApiModelProperty(value="数据状态",name="dataStat")
  80. private String dataStat;
  81. public AttJspwiu2024Base() {
  82. }
  83. public String getId() {
  84. return id;
  85. }
  86. public void setId(String id) {
  87. this.id = id;
  88. }
  89. public String getName() {
  90. return name;
  91. }
  92. public void setName(String name) {
  93. this.name = name;
  94. }
  95. public String getLeglPers() {
  96. return leglPers;
  97. }
  98. public void setLeglPers(String leglPers) {
  99. this.leglPers = leglPers;
  100. }
  101. public String getAdCode() {
  102. return adCode;
  103. }
  104. public void setAdCode(String adCode) {
  105. this.adCode = adCode;
  106. }
  107. public String getAdName() {
  108. return adName;
  109. }
  110. public void setAdName(String adName) {
  111. this.adName = adName;
  112. }
  113. public String getIdnt() {
  114. return idnt;
  115. }
  116. public void setIdnt(String idnt) {
  117. this.idnt = idnt;
  118. }
  119. public String getBusAddr() {
  120. return busAddr;
  121. }
  122. public void setBusAddr(String busAddr) {
  123. this.busAddr = busAddr;
  124. }
  125. public String getIndustry() {
  126. return industry;
  127. }
  128. public void setIndustry(String industry) {
  129. this.industry = industry;
  130. }
  131. public String getIndustryCode() {
  132. return industryCode;
  133. }
  134. public void setIndustryCode(String industryCode) {
  135. this.industryCode = industryCode;
  136. }
  137. public String getMajorProduct() {
  138. return majorProduct;
  139. }
  140. public void setMajorProduct(String majorProduct) {
  141. this.majorProduct = majorProduct;
  142. }
  143. public String getWaterIntake() {
  144. return waterIntake;
  145. }
  146. public void setWaterIntake(String waterIntake) {
  147. this.waterIntake = waterIntake;
  148. }
  149. public String getConPers() {
  150. return conPers;
  151. }
  152. public void setConPers(String conPers) {
  153. this.conPers = conPers;
  154. }
  155. public String getConPersTel() {
  156. return conPersTel;
  157. }
  158. public void setConPersTel(String conPersTel) {
  159. this.conPersTel = conPersTel;
  160. }
  161. public Double getCenterX() {
  162. return centerX;
  163. }
  164. public void setCenterX(Double centerX) {
  165. this.centerX = centerX;
  166. }
  167. public Double getCenterY() {
  168. return centerY;
  169. }
  170. public void setCenterY(Double centerY) {
  171. this.centerY = centerY;
  172. }
  173. public Double getGdX() {
  174. return gdX;
  175. }
  176. public void setGdX(Double gdX) {
  177. this.gdX = gdX;
  178. }
  179. public Double getGdY() {
  180. return gdY;
  181. }
  182. public void setGdY(Double gdY) {
  183. this.gdY = gdY;
  184. }
  185. public String getPersId() {
  186. return persId;
  187. }
  188. public void setPersId(String persId) {
  189. this.persId = persId;
  190. }
  191. public Date getIntm() {
  192. return intm;
  193. }
  194. public void setIntm(Date intm) {
  195. this.intm = intm;
  196. }
  197. public Date getUptm() {
  198. return uptm;
  199. }
  200. public void setUptm(Date uptm) {
  201. this.uptm = uptm;
  202. }
  203. public String getNote() {
  204. return note;
  205. }
  206. public void setNote(String note) {
  207. this.note = note;
  208. }
  209. public String getDataStat() {
  210. return dataStat;
  211. }
  212. public void setDataStat(String dataStat) {
  213. this.dataStat = dataStat;
  214. }
  215. @Override
  216. public String toString() {
  217. return "AttJspwiu2024Base [" + "id=" + id + ", name=" + name + ", leglPers=" + leglPers + ", adCode=" + adCode + ", adName=" + adName + ", idnt=" + idnt + ", busAddr=" + busAddr + ", industry=" + industry + ", industryCode=" + industryCode + ", majorProduct=" + majorProduct + ", waterIntake=" + waterIntake + ", conPers=" + conPers + ", conPersTel=" + conPersTel + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + ", dataStat=" + dataStat + "]";
  218. }
  219. }