StoreVo.java 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  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. private String merchSn;
  63. private String merchName;
  64. private String thirdPartyMerchCode;
  65. private String thirdPartyMerchName;
  66. public String getThirdPartyMerchCode() {
  67. return thirdPartyMerchCode;
  68. }
  69. public void setThirdPartyMerchCode(String thirdPartyMerchCode) {
  70. this.thirdPartyMerchCode = thirdPartyMerchCode;
  71. }
  72. public String getThirdPartyMerchName() {
  73. return thirdPartyMerchName;
  74. }
  75. public void setThirdPartyMerchName(String thirdPartyMerchName) {
  76. this.thirdPartyMerchName = thirdPartyMerchName;
  77. }
  78. public String getMerchSn() {
  79. return merchSn;
  80. }
  81. public void setMerchSn(String merchSn) {
  82. this.merchSn = merchSn;
  83. }
  84. public String getMerchName() {
  85. return merchName;
  86. }
  87. public void setMerchName(String merchName) {
  88. this.merchName = merchName;
  89. }
  90. /**
  91. * 设置:主键
  92. */
  93. public void setId(Long id) {
  94. this.id = id;
  95. }
  96. /**
  97. * 获取:主键
  98. */
  99. public Long getId() {
  100. return id;
  101. }
  102. /**
  103. * 设置:门店名称
  104. */
  105. public void setStoreName(String storeName) {
  106. this.storeName = storeName;
  107. }
  108. /**
  109. * 获取:门店名称
  110. */
  111. public String getStoreName() {
  112. return storeName;
  113. }
  114. /**
  115. * 设置:门店编号
  116. */
  117. public void setStoreNumber(String storeNumber) {
  118. this.storeNumber = storeNumber;
  119. }
  120. /**
  121. * 获取:门店编号
  122. */
  123. public String getStoreNumber() {
  124. return storeNumber;
  125. }
  126. /**
  127. * 设置:门店地址
  128. */
  129. public void setStoreAddress(String storeAddress) {
  130. this.storeAddress = storeAddress;
  131. }
  132. /**
  133. * 获取:门店地址
  134. */
  135. public String getStoreAddress() {
  136. return storeAddress;
  137. }
  138. /**
  139. * 设置:
  140. */
  141. public void setProvinceName(String provinceName) {
  142. this.provinceName = provinceName;
  143. }
  144. /**
  145. * 获取:
  146. */
  147. public String getProvinceName() {
  148. return provinceName;
  149. }
  150. /**
  151. * 设置:
  152. */
  153. public void setCityName(String cityName) {
  154. this.cityName = cityName;
  155. }
  156. /**
  157. * 获取:
  158. */
  159. public String getCityName() {
  160. return cityName;
  161. }
  162. /**
  163. * 设置:
  164. */
  165. public void setCountyName(String countyName) {
  166. this.countyName = countyName;
  167. }
  168. /**
  169. * 获取:
  170. */
  171. public String getCountyName() {
  172. return countyName;
  173. }
  174. /**
  175. * 设置:纬度
  176. */
  177. public void setLatitude(BigDecimal latitude) {
  178. this.latitude = latitude;
  179. }
  180. /**
  181. * 获取:纬度
  182. */
  183. public BigDecimal getLatitude() {
  184. return latitude;
  185. }
  186. /**
  187. * 设置:经度
  188. */
  189. public void setLongitude(BigDecimal longitude) {
  190. this.longitude = longitude;
  191. }
  192. /**
  193. * 获取:经度
  194. */
  195. public BigDecimal getLongitude() {
  196. return longitude;
  197. }
  198. /**
  199. * 设置:配送半径(km)
  200. */
  201. public void setCoverRadius(BigDecimal coverRadius) {
  202. this.coverRadius = coverRadius;
  203. }
  204. /**
  205. * 获取:配送半径(km)
  206. */
  207. public BigDecimal getCoverRadius() {
  208. return coverRadius;
  209. }
  210. /**
  211. * 设置:备注
  212. */
  213. public void setRemark(String remark) {
  214. this.remark = remark;
  215. }
  216. /**
  217. * 获取:备注
  218. */
  219. public String getRemark() {
  220. return remark;
  221. }
  222. public BigDecimal getDistance() {
  223. return distance;
  224. }
  225. public void setDistance(BigDecimal distance) {
  226. this.distance = distance;
  227. }
  228. }