StoreEntity.java 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. package com.kmall.admin.entity;
  2. import java.io.Serializable;
  3. import java.math.BigDecimal;
  4. import java.util.Date;
  5. /**
  6. * 实体
  7. * 表名 mall_store
  8. *
  9. * @author Scott
  10. * @email
  11. * @date 2017-12-02 00:53:32
  12. */
  13. public class StoreEntity implements Serializable {
  14. private static final long serialVersionUID = 1L;
  15. /**
  16. * 主键
  17. */
  18. private Long id;
  19. private String merchSn;
  20. private String merchName;
  21. /**
  22. * 门店名称
  23. */
  24. private String storeName;
  25. /**
  26. * 门店编号
  27. */
  28. private String storeNumber;
  29. /**
  30. * 门店地址
  31. */
  32. private String storeAddress;
  33. /**
  34. *
  35. */
  36. private String provinceName;
  37. /**
  38. *
  39. */
  40. private String cityName;
  41. /**
  42. *
  43. */
  44. private String countyName;
  45. /**
  46. * 纬度
  47. */
  48. private BigDecimal latitude;
  49. /**
  50. * 经度
  51. */
  52. private BigDecimal longitude;
  53. /**
  54. * 配送半径(km)
  55. */
  56. private BigDecimal coverRadius;
  57. /**
  58. * 备注
  59. */
  60. private String remark;
  61. private String createrSn;
  62. private Date createTime;
  63. private String moderSn;
  64. private Date modTime;
  65. private Date tstm;
  66. public Date getTstm() {
  67. return tstm;
  68. }
  69. public void setTstm(Date tstm) {
  70. this.tstm = tstm;
  71. }
  72. /**
  73. * 设置:主键
  74. */
  75. public void setId(Long id) {
  76. this.id = id;
  77. }
  78. /**
  79. * 获取:主键
  80. */
  81. public Long getId() {
  82. return id;
  83. }
  84. public String getMerchSn() {
  85. return merchSn;
  86. }
  87. public void setMerchSn(String merchSn) {
  88. this.merchSn = merchSn;
  89. }
  90. public String getMerchName() {
  91. return merchName;
  92. }
  93. public void setMerchName(String merchName) {
  94. this.merchName = merchName;
  95. }
  96. /**
  97. * 设置:门店名称
  98. */
  99. public void setStoreName(String storeName) {
  100. this.storeName = storeName;
  101. }
  102. /**
  103. * 获取:门店名称
  104. */
  105. public String getStoreName() {
  106. return storeName;
  107. }
  108. /**
  109. * 设置:门店编号
  110. */
  111. public void setStoreNumber(String storeNumber) {
  112. this.storeNumber = storeNumber;
  113. }
  114. /**
  115. * 获取:门店编号
  116. */
  117. public String getStoreNumber() {
  118. return storeNumber;
  119. }
  120. /**
  121. * 设置:门店地址
  122. */
  123. public void setStoreAddress(String storeAddress) {
  124. this.storeAddress = storeAddress;
  125. }
  126. /**
  127. * 获取:门店地址
  128. */
  129. public String getStoreAddress() {
  130. return storeAddress;
  131. }
  132. /**
  133. * 设置:
  134. */
  135. public void setProvinceName(String provinceName) {
  136. this.provinceName = provinceName;
  137. }
  138. /**
  139. * 获取:
  140. */
  141. public String getProvinceName() {
  142. return provinceName;
  143. }
  144. /**
  145. * 设置:
  146. */
  147. public void setCityName(String cityName) {
  148. this.cityName = cityName;
  149. }
  150. /**
  151. * 获取:
  152. */
  153. public String getCityName() {
  154. return cityName;
  155. }
  156. /**
  157. * 设置:
  158. */
  159. public void setCountyName(String countyName) {
  160. this.countyName = countyName;
  161. }
  162. /**
  163. * 获取:
  164. */
  165. public String getCountyName() {
  166. return countyName;
  167. }
  168. /**
  169. * 设置:纬度
  170. */
  171. public void setLatitude(BigDecimal latitude) {
  172. this.latitude = latitude;
  173. }
  174. /**
  175. * 获取:纬度
  176. */
  177. public BigDecimal getLatitude() {
  178. return latitude;
  179. }
  180. /**
  181. * 设置:经度
  182. */
  183. public void setLongitude(BigDecimal longitude) {
  184. this.longitude = longitude;
  185. }
  186. /**
  187. * 获取:经度
  188. */
  189. public BigDecimal getLongitude() {
  190. return longitude;
  191. }
  192. /**
  193. * 设置:配送半径(km)
  194. */
  195. public void setCoverRadius(BigDecimal coverRadius) {
  196. this.coverRadius = coverRadius;
  197. }
  198. /**
  199. * 获取:配送半径(km)
  200. */
  201. public BigDecimal getCoverRadius() {
  202. return coverRadius;
  203. }
  204. /**
  205. * 设置:备注
  206. */
  207. public void setRemark(String remark) {
  208. this.remark = remark;
  209. }
  210. /**
  211. * 获取:备注
  212. */
  213. public String getRemark() {
  214. return remark;
  215. }
  216. public String getCreaterSn() {
  217. return createrSn;
  218. }
  219. public void setCreaterSn(String createrSn) {
  220. this.createrSn = createrSn;
  221. }
  222. public Date getCreateTime() {
  223. return createTime;
  224. }
  225. public void setCreateTime(Date createTime) {
  226. this.createTime = createTime;
  227. }
  228. public String getModerSn() {
  229. return moderSn;
  230. }
  231. public void setModerSn(String moderSn) {
  232. this.moderSn = moderSn;
  233. }
  234. public Date getModTime() {
  235. return modTime;
  236. }
  237. public void setModTime(Date modTime) {
  238. this.modTime = modTime;
  239. }
  240. }