2801ae39f710772b8df64c5f9770133b815df1d7.svn-base 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import java.util.Date;
  5. import java.io.Serializable;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * AttRlrwBaseParam
  9. *
  10. * @author lhc
  11. * @date 2021-1-19
  12. */
  13. public class AttRlrwBaseParam extends PageParam implements Serializable {
  14. // 地块编码
  15. @ApiParam(name = "地块编码")
  16. @ApiModelProperty(value = "地块编码", name = "landCode")
  17. private String landCode;
  18. // 地块名称
  19. @ApiParam(name = "地块名称")
  20. @ApiModelProperty(value = "地块名称", name = "landName")
  21. private String landName;
  22. // 地块亩数
  23. @ApiParam(name = "地块亩数")
  24. @ApiModelProperty(value = "地块亩数", name = "landArea")
  25. private Double landArea;
  26. // 行政区划编码
  27. @ApiParam(name = "行政区划编码")
  28. @ApiModelProperty(value = "行政区划编码", name = "adCode")
  29. private String adCode;
  30. // 行政区划名称
  31. @ApiParam(name = "行政区划名称")
  32. @ApiModelProperty(value = "行政区划名称", name = "adName")
  33. private String adName;
  34. // 联系人
  35. @ApiParam(name = "联系人")
  36. @ApiModelProperty(value = "联系人", name = "contact")
  37. private String contact;
  38. // 联系人电话
  39. @ApiParam(name = "联系人电话")
  40. @ApiModelProperty(value = "联系人电话", name = "contactTel")
  41. private String contactTel;
  42. // 经度
  43. @ApiParam(name = "经度")
  44. @ApiModelProperty(value = "经度", name = "centerX")
  45. private Double centerX;
  46. // 纬度
  47. @ApiParam(name = "纬度")
  48. @ApiModelProperty(value = "纬度", name = "centerY")
  49. private Double centerY;
  50. // 高德经度
  51. @ApiParam(name = "高德经度")
  52. @ApiModelProperty(value = "高德经度", name = "gdX")
  53. private Double gdX;
  54. // 高德纬度
  55. @ApiParam(name = "高德纬度")
  56. @ApiModelProperty(value = "高德纬度", name = "gdY")
  57. private Double gdY;
  58. // 创建人
  59. @ApiParam(name = "创建人")
  60. @ApiModelProperty(value = "创建人", name = "persId")
  61. private String persId;
  62. // 创建时间
  63. @ApiParam(name = "创建时间")
  64. @ApiModelProperty(value = "创建时间", name = "intm")
  65. private Date intm;
  66. // 修改时间
  67. @ApiParam(name = "修改时间")
  68. @ApiModelProperty(value = "修改时间", name = "uptm")
  69. private Date uptm;
  70. // 数据状态(0:正常;9:删除)
  71. @ApiParam(name = "数据状态(0:正常;9:删除)")
  72. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  73. private String dataStat;
  74. public AttRlrwBaseParam() {
  75. }
  76. public String getLandCode() {
  77. return landCode;
  78. }
  79. public void setLandCode(String landCode) {
  80. this.landCode = landCode;
  81. }
  82. public String getLandName() {
  83. return landName;
  84. }
  85. public void setLandName(String landName) {
  86. this.landName = landName;
  87. }
  88. public Double getLandArea() {
  89. return landArea;
  90. }
  91. public void setLandArea(Double landArea) {
  92. this.landArea = landArea;
  93. }
  94. public String getAdCode() {
  95. return adCode;
  96. }
  97. public void setAdCode(String adCode) {
  98. this.adCode = adCode;
  99. }
  100. public String getAdName() {
  101. return adName;
  102. }
  103. public void setAdName(String adName) {
  104. this.adName = adName;
  105. }
  106. public String getContact() {
  107. return contact;
  108. }
  109. public void setContact(String contact) {
  110. this.contact = contact;
  111. }
  112. public String getContactTel() {
  113. return contactTel;
  114. }
  115. public void setContactTel(String contactTel) {
  116. this.contactTel = contactTel;
  117. }
  118. public Double getCenterX() {
  119. return centerX;
  120. }
  121. public void setCenterX(Double centerX) {
  122. this.centerX = centerX;
  123. }
  124. public Double getCenterY() {
  125. return centerY;
  126. }
  127. public void setCenterY(Double centerY) {
  128. this.centerY = centerY;
  129. }
  130. public Double getGdX() {
  131. return gdX;
  132. }
  133. public void setGdX(Double gdX) {
  134. this.gdX = gdX;
  135. }
  136. public Double getGdY() {
  137. return gdY;
  138. }
  139. public void setGdY(Double gdY) {
  140. this.gdY = gdY;
  141. }
  142. public String getPersId() {
  143. return persId;
  144. }
  145. public void setPersId(String persId) {
  146. this.persId = persId;
  147. }
  148. public Date getIntm() {
  149. return intm;
  150. }
  151. public void setIntm(Date intm) {
  152. this.intm = intm;
  153. }
  154. public Date getUptm() {
  155. return uptm;
  156. }
  157. public void setUptm(Date uptm) {
  158. this.uptm = uptm;
  159. }
  160. public String getDataStat() {
  161. return dataStat;
  162. }
  163. public void setDataStat(String dataStat) {
  164. this.dataStat = dataStat;
  165. }
  166. }