StoreVo.java 4.8 KB

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