1
0

StoreVo.java 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. package com.kmall.api.entity;
  2. import java.io.Serializable;
  3. import java.math.BigDecimal;
  4. /**
  5. * 实体
  6. * 表名 mall_store
  7. *
  8. * @author Scott
  9. * @email
  10. * @date 2017-12-07 17:53:15
  11. */
  12. public class StoreVo implements Serializable {
  13. private static final long serialVersionUID = 1L;
  14. /**
  15. * 主键
  16. */
  17. private Long id;
  18. /**
  19. * 门店名称
  20. */
  21. private String storeName;
  22. /**
  23. * 门店编号
  24. */
  25. private String storeNumber;
  26. /**
  27. * 门店地址
  28. */
  29. private String storeAddress;
  30. /**
  31. *
  32. */
  33. private String provinceName;
  34. /**
  35. *
  36. */
  37. private String cityName;
  38. /**
  39. *
  40. */
  41. private String countyName;
  42. /**
  43. * 纬度
  44. */
  45. private BigDecimal latitude;
  46. /**
  47. * 经度
  48. */
  49. private BigDecimal longitude;
  50. /**
  51. * 配送半径(km)
  52. */
  53. private BigDecimal coverRadius;
  54. /**
  55. * 备注
  56. */
  57. private String remark;
  58. /**
  59. * 距离,单位m
  60. */
  61. private BigDecimal distance;
  62. /**
  63. * 设置:主键
  64. */
  65. public void setId(Long id) {
  66. this.id = id;
  67. }
  68. /**
  69. * 获取:主键
  70. */
  71. public Long getId() {
  72. return id;
  73. }
  74. /**
  75. * 设置:门店名称
  76. */
  77. public void setStoreName(String storeName) {
  78. this.storeName = storeName;
  79. }
  80. /**
  81. * 获取:门店名称
  82. */
  83. public String getStoreName() {
  84. return storeName;
  85. }
  86. /**
  87. * 设置:门店编号
  88. */
  89. public void setStoreNumber(String storeNumber) {
  90. this.storeNumber = storeNumber;
  91. }
  92. /**
  93. * 获取:门店编号
  94. */
  95. public String getStoreNumber() {
  96. return storeNumber;
  97. }
  98. /**
  99. * 设置:门店地址
  100. */
  101. public void setStoreAddress(String storeAddress) {
  102. this.storeAddress = storeAddress;
  103. }
  104. /**
  105. * 获取:门店地址
  106. */
  107. public String getStoreAddress() {
  108. return storeAddress;
  109. }
  110. /**
  111. * 设置:
  112. */
  113. public void setProvinceName(String provinceName) {
  114. this.provinceName = provinceName;
  115. }
  116. /**
  117. * 获取:
  118. */
  119. public String getProvinceName() {
  120. return provinceName;
  121. }
  122. /**
  123. * 设置:
  124. */
  125. public void setCityName(String cityName) {
  126. this.cityName = cityName;
  127. }
  128. /**
  129. * 获取:
  130. */
  131. public String getCityName() {
  132. return cityName;
  133. }
  134. /**
  135. * 设置:
  136. */
  137. public void setCountyName(String countyName) {
  138. this.countyName = countyName;
  139. }
  140. /**
  141. * 获取:
  142. */
  143. public String getCountyName() {
  144. return countyName;
  145. }
  146. /**
  147. * 设置:纬度
  148. */
  149. public void setLatitude(BigDecimal latitude) {
  150. this.latitude = latitude;
  151. }
  152. /**
  153. * 获取:纬度
  154. */
  155. public BigDecimal getLatitude() {
  156. return latitude;
  157. }
  158. /**
  159. * 设置:经度
  160. */
  161. public void setLongitude(BigDecimal longitude) {
  162. this.longitude = longitude;
  163. }
  164. /**
  165. * 获取:经度
  166. */
  167. public BigDecimal getLongitude() {
  168. return longitude;
  169. }
  170. /**
  171. * 设置:配送半径(km)
  172. */
  173. public void setCoverRadius(BigDecimal coverRadius) {
  174. this.coverRadius = coverRadius;
  175. }
  176. /**
  177. * 获取:配送半径(km)
  178. */
  179. public BigDecimal getCoverRadius() {
  180. return coverRadius;
  181. }
  182. /**
  183. * 设置:备注
  184. */
  185. public void setRemark(String remark) {
  186. this.remark = remark;
  187. }
  188. /**
  189. * 获取:备注
  190. */
  191. public String getRemark() {
  192. return remark;
  193. }
  194. public BigDecimal getDistance() {
  195. return distance;
  196. }
  197. public void setDistance(BigDecimal distance) {
  198. this.distance = distance;
  199. }
  200. }