de5f58aab275d3b310d286622732984ce4478a00.svn-base 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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:AttSafetyBase
  9. *
  10. * @author lhc
  11. * @date 2021-3-11
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class AttSafetyBase 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="mgPers")
  23. private String mgPers;
  24. // 责任人联系电话
  25. @ApiModelProperty(value="责任人联系电话",name="mgPersTel")
  26. private String mgPersTel;
  27. // 行政区划编码
  28. @ApiModelProperty(value="行政区划编码",name="adCode")
  29. private String adCode;
  30. // 行政区划名称
  31. @ApiModelProperty(value="行政区划名称",name="adName")
  32. private String adName;
  33. // 所在地
  34. @ApiModelProperty(value="所在地",name="loc")
  35. private String loc;
  36. // 备注
  37. @ApiModelProperty(value="备注",name="note")
  38. private String note;
  39. // 经度
  40. @ApiModelProperty(value="经度",name="centerX")
  41. private Double centerX;
  42. // 纬度
  43. @ApiModelProperty(value="纬度",name="centerY")
  44. private Double centerY;
  45. // 高德经度
  46. @ApiModelProperty(value="高德经度",name="gdX")
  47. private Double gdX;
  48. // 高德纬度
  49. @ApiModelProperty(value="高德纬度",name="gdY")
  50. private Double gdY;
  51. // 创建时间
  52. @ApiModelProperty(value="创建时间",name="intm")
  53. private Date intm;
  54. // 修改时间
  55. @ApiModelProperty(value="修改时间",name="uptm")
  56. private Date uptm;
  57. // 数据状态(0:正常;9:删除)
  58. @ApiModelProperty(value="数据状态(0:正常;9:删除)",name="dataStat")
  59. private String dataStat;
  60. public AttSafetyBase() {
  61. }
  62. public String getId() {
  63. return id;
  64. }
  65. public void setId(String id) {
  66. this.id = id;
  67. }
  68. public String getName() {
  69. return name;
  70. }
  71. public void setName(String name) {
  72. this.name = name;
  73. }
  74. public String getMgPers() {
  75. return mgPers;
  76. }
  77. public void setMgPers(String mgPers) {
  78. this.mgPers = mgPers;
  79. }
  80. public String getMgPersTel() {
  81. return mgPersTel;
  82. }
  83. public void setMgPersTel(String mgPersTel) {
  84. this.mgPersTel = mgPersTel;
  85. }
  86. public String getAdCode() {
  87. return adCode;
  88. }
  89. public void setAdCode(String adCode) {
  90. this.adCode = adCode;
  91. }
  92. public String getAdName() {
  93. return adName;
  94. }
  95. public void setAdName(String adName) {
  96. this.adName = adName;
  97. }
  98. public String getLoc() {
  99. return loc;
  100. }
  101. public void setLoc(String loc) {
  102. this.loc = loc;
  103. }
  104. public String getNote() {
  105. return note;
  106. }
  107. public void setNote(String note) {
  108. this.note = note;
  109. }
  110. public Double getCenterX() {
  111. return centerX;
  112. }
  113. public void setCenterX(Double centerX) {
  114. this.centerX = centerX;
  115. }
  116. public Double getCenterY() {
  117. return centerY;
  118. }
  119. public void setCenterY(Double centerY) {
  120. this.centerY = centerY;
  121. }
  122. public Double getGdX() {
  123. return gdX;
  124. }
  125. public void setGdX(Double gdX) {
  126. this.gdX = gdX;
  127. }
  128. public Double getGdY() {
  129. return gdY;
  130. }
  131. public void setGdY(Double gdY) {
  132. this.gdY = gdY;
  133. }
  134. public Date getIntm() {
  135. return intm;
  136. }
  137. public void setIntm(Date intm) {
  138. this.intm = intm;
  139. }
  140. public Date getUptm() {
  141. return uptm;
  142. }
  143. public void setUptm(Date uptm) {
  144. this.uptm = uptm;
  145. }
  146. public String getDataStat() {
  147. return dataStat;
  148. }
  149. public void setDataStat(String dataStat) {
  150. this.dataStat = dataStat;
  151. }
  152. @Override
  153. public String toString() {
  154. return "AttSafetyBase [" + "id=" + id + ", name=" + name + ", mgPers=" + mgPers + ", mgPersTel=" + mgPersTel + ", adCode=" + adCode + ", adName=" + adName + ", loc=" + loc + ", note=" + note + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
  155. }
  156. }