cf3e07c26b85798b56b7c09b0402e7ddd5487f56.svn-base 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  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:AttYndepBase
  9. *
  10. * @author lhc
  11. * @date 2021-3-23
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class AttYndepBase extends BaseBean implements Serializable {
  15. // ID
  16. @ApiModelProperty(value = "ID", name = "id")
  17. private String id;
  18. // 单位名称
  19. @ApiModelProperty(value = "单位名称", name = "depName")
  20. private String depName;
  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 = "loc")
  29. private String loc;
  30. // 单位负责人
  31. @ApiModelProperty(value = "单位负责人", name = "utLead")
  32. private String utLead;
  33. // 负责人电话
  34. @ApiModelProperty(value = "负责人电话", name = "principalTel")
  35. private String principalTel;
  36. // 联系人
  37. @ApiModelProperty(value = "联系人", name = "depPers")
  38. private String depPers;
  39. // 联系电话
  40. @ApiModelProperty(value = "联系电话", name = "depPersTel")
  41. private String depPersTel;
  42. // 备注
  43. @ApiModelProperty(value = "备注", name = "note")
  44. private String note;
  45. // 经度
  46. @ApiModelProperty(value = "经度", name = "centerX")
  47. private Double centerX;
  48. // 纬度
  49. @ApiModelProperty(value = "纬度", name = "centerY")
  50. private Double centerY;
  51. // 高德经度
  52. @ApiModelProperty(value = "高德经度", name = "gdX")
  53. private Double gdX;
  54. // 高德纬度
  55. @ApiModelProperty(value = "高德纬度", name = "gdY")
  56. private Double gdY;
  57. // 创建人
  58. @ApiModelProperty(value = "创建人", name = "persId")
  59. private String persId;
  60. // 创建时间
  61. @ApiModelProperty(value = "创建时间", name = "intm")
  62. private Date intm;
  63. // 修改时间
  64. @ApiModelProperty(value = "修改时间", name = "uptm")
  65. private Date uptm;
  66. // 数据状态(0:正常;9:删除)
  67. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  68. private String dataStat;
  69. public AttYndepBase() {
  70. }
  71. public String getId() {
  72. return id;
  73. }
  74. public void setId(String id) {
  75. this.id = id;
  76. }
  77. public String getDepName() {
  78. return depName;
  79. }
  80. public void setDepName(String depName) {
  81. this.depName = depName;
  82. }
  83. public String getAdCode() {
  84. return adCode;
  85. }
  86. public void setAdCode(String adCode) {
  87. this.adCode = adCode;
  88. }
  89. public String getAdName() {
  90. return adName;
  91. }
  92. public void setAdName(String adName) {
  93. this.adName = adName;
  94. }
  95. public String getLoc() {
  96. return loc;
  97. }
  98. public void setLoc(String loc) {
  99. this.loc = loc;
  100. }
  101. public String getUtLead() {
  102. return utLead;
  103. }
  104. public void setUtLead(String utLead) {
  105. this.utLead = utLead;
  106. }
  107. public String getPrincipalTel() {
  108. return principalTel;
  109. }
  110. public void setPrincipalTel(String principalTel) {
  111. this.principalTel = principalTel;
  112. }
  113. public String getDepPers() {
  114. return depPers;
  115. }
  116. public void setDepPers(String depPers) {
  117. this.depPers = depPers;
  118. }
  119. public String getDepPersTel() {
  120. return depPersTel;
  121. }
  122. public void setDepPersTel(String depPersTel) {
  123. this.depPersTel = depPersTel;
  124. }
  125. public String getNote() {
  126. return note;
  127. }
  128. public void setNote(String note) {
  129. this.note = note;
  130. }
  131. public Double getCenterX() {
  132. return centerX;
  133. }
  134. public void setCenterX(Double centerX) {
  135. this.centerX = centerX;
  136. }
  137. public Double getCenterY() {
  138. return centerY;
  139. }
  140. public void setCenterY(Double centerY) {
  141. this.centerY = centerY;
  142. }
  143. public Double getGdX() {
  144. return gdX;
  145. }
  146. public void setGdX(Double gdX) {
  147. this.gdX = gdX;
  148. }
  149. public Double getGdY() {
  150. return gdY;
  151. }
  152. public void setGdY(Double gdY) {
  153. this.gdY = gdY;
  154. }
  155. public String getPersId() {
  156. return persId;
  157. }
  158. public void setPersId(String persId) {
  159. this.persId = persId;
  160. }
  161. public Date getIntm() {
  162. return intm;
  163. }
  164. public void setIntm(Date intm) {
  165. this.intm = intm;
  166. }
  167. public Date getUptm() {
  168. return uptm;
  169. }
  170. public void setUptm(Date uptm) {
  171. this.uptm = uptm;
  172. }
  173. public String getDataStat() {
  174. return dataStat;
  175. }
  176. public void setDataStat(String dataStat) {
  177. this.dataStat = dataStat;
  178. }
  179. @Override
  180. public String toString() {
  181. return "AttYndepBase [" + "id=" + id + ", depName=" + depName + ", adCode=" + adCode + ", adName=" + adName + ", loc=" + loc + ", utLead=" + utLead + ", principalTel=" + principalTel + ", depPers=" + depPers + ", depPersTel=" + depPersTel + ", note=" + note + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
  182. }
  183. }