e24924ca85f6639cc6d1fc310f32df368714966c.svn-base 4.6 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:AttRlrwBase
  9. *
  10. * @author lhc
  11. * @date 2021-1-19
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class AttRlrwBase extends BaseBean implements Serializable {
  15. // 地块编码
  16. @ApiModelProperty(value="地块编码",name="landCode")
  17. private String landCode;
  18. // 地块名称
  19. @ApiModelProperty(value="地块名称",name="landName")
  20. private String landName;
  21. // 地块亩数
  22. @ApiModelProperty(value="地块亩数",name="landArea")
  23. private Double landArea;
  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="contact")
  32. private String contact;
  33. // 联系人电话
  34. @ApiModelProperty(value="联系人电话",name="contactTel")
  35. private String contactTel;
  36. // 经度
  37. @ApiModelProperty(value="经度",name="centerX")
  38. private Double centerX;
  39. // 纬度
  40. @ApiModelProperty(value="纬度",name="centerY")
  41. private Double centerY;
  42. // 高德经度
  43. @ApiModelProperty(value="高德经度",name="gdX")
  44. private Double gdX;
  45. // 高德纬度
  46. @ApiModelProperty(value="高德纬度",name="gdY")
  47. private Double gdY;
  48. // 创建人
  49. @ApiModelProperty(value="创建人",name="persId")
  50. private String persId;
  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 AttRlrwBase() {
  61. }
  62. public String getLandCode() {
  63. return landCode;
  64. }
  65. public void setLandCode(String landCode) {
  66. this.landCode = landCode;
  67. }
  68. public String getLandName() {
  69. return landName;
  70. }
  71. public void setLandName(String landName) {
  72. this.landName = landName;
  73. }
  74. public Double getLandArea() {
  75. return landArea;
  76. }
  77. public void setLandArea(Double landArea) {
  78. this.landArea = landArea;
  79. }
  80. public String getAdCode() {
  81. return adCode;
  82. }
  83. public void setAdCode(String adCode) {
  84. this.adCode = adCode;
  85. }
  86. public String getAdName() {
  87. return adName;
  88. }
  89. public void setAdName(String adName) {
  90. this.adName = adName;
  91. }
  92. public String getContact() {
  93. return contact;
  94. }
  95. public void setContact(String contact) {
  96. this.contact = contact;
  97. }
  98. public String getContactTel() {
  99. return contactTel;
  100. }
  101. public void setContactTel(String contactTel) {
  102. this.contactTel = contactTel;
  103. }
  104. public Double getCenterX() {
  105. return centerX;
  106. }
  107. public void setCenterX(Double centerX) {
  108. this.centerX = centerX;
  109. }
  110. public Double getCenterY() {
  111. return centerY;
  112. }
  113. public void setCenterY(Double centerY) {
  114. this.centerY = centerY;
  115. }
  116. public Double getGdX() {
  117. return gdX;
  118. }
  119. public void setGdX(Double gdX) {
  120. this.gdX = gdX;
  121. }
  122. public Double getGdY() {
  123. return gdY;
  124. }
  125. public void setGdY(Double gdY) {
  126. this.gdY = gdY;
  127. }
  128. public String getPersId() {
  129. return persId;
  130. }
  131. public void setPersId(String persId) {
  132. this.persId = persId;
  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 "AttRlrwBase [" + "landCode=" + landCode + ", landName=" + landName + ", landArea=" + landArea + ", adCode=" + adCode + ", adName=" + adName + ", contact=" + contact + ", contactTel=" + contactTel + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
  155. }
  156. }