GoodsHistoryPriceEntity.java 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  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_goods_history_price
  8. *
  9. * @author emato
  10. * @email admin@qhdswl.com
  11. * @date 2020-06-13 12:29:09
  12. */
  13. public class GoodsHistoryPriceEntity implements Serializable {
  14. private static final long serialVersionUID = 1L;
  15. /**
  16. * 编号
  17. */
  18. private Integer id;
  19. /**
  20. * 商品编码
  21. */
  22. private String goodsSn;
  23. /**
  24. * sku
  25. */
  26. private String sku;
  27. /**
  28. * PLU
  29. */
  30. private String plu;
  31. /**
  32. * 第三方商户编号,主键编号
  33. */
  34. private Integer thirdMerchSn;
  35. /**
  36. * 商户编号
  37. */
  38. private String merchSn;
  39. /**
  40. * 门店编号
  41. */
  42. private String storeNumber;
  43. /**
  44. * 批次编号
  45. */
  46. private String batchSn;
  47. /**
  48. * 日常价
  49. */
  50. private BigDecimal dailyPrice;
  51. /**
  52. * 活动价
  53. */
  54. private BigDecimal activeityPrice;
  55. /**
  56. * 价格时间
  57. */
  58. private Date priceTime;
  59. /**
  60. * 价格日期
  61. */
  62. private Date retailPriceDate;
  63. /**
  64. * +创建人编号
  65. */
  66. private String createrSn;
  67. /**
  68. * +创建时间,yyyy-MM-dd HH:mm:ss
  69. */
  70. private Date createTime;
  71. /**
  72. * +修改人编号
  73. */
  74. private String moderSn;
  75. /**
  76. * +修改时间,yyyy-MM-dd HH:mm:ss
  77. */
  78. private Date modTime;
  79. /**
  80. * +时间戳
  81. */
  82. private Date tstm;
  83. /**
  84. * 设置:编号
  85. */
  86. public void setId(Integer id) {
  87. this.id = id;
  88. }
  89. /**
  90. * 获取:编号
  91. */
  92. public Integer getId() {
  93. return id;
  94. }
  95. /**
  96. * 设置:商品编码
  97. */
  98. public void setGoodsSn(String goodsSn) {
  99. this.goodsSn = goodsSn;
  100. }
  101. /**
  102. * 获取:商品编码
  103. */
  104. public String getGoodsSn() {
  105. return goodsSn;
  106. }
  107. /**
  108. * 设置:sku
  109. */
  110. public void setSku(String sku) {
  111. this.sku = sku;
  112. }
  113. /**
  114. * 获取:sku
  115. */
  116. public String getSku() {
  117. return sku;
  118. }
  119. /**
  120. * 设置:PLU
  121. */
  122. public void setPlu(String plu) {
  123. this.plu = plu;
  124. }
  125. /**
  126. * 获取:PLU
  127. */
  128. public String getPlu() {
  129. return plu;
  130. }
  131. /**
  132. * 设置:第三方商户编号,主键编号
  133. */
  134. public void setThirdMerchSn(Integer thirdMerchSn) {
  135. this.thirdMerchSn = thirdMerchSn;
  136. }
  137. /**
  138. * 获取:第三方商户编号,主键编号
  139. */
  140. public Integer getThirdMerchSn() {
  141. return thirdMerchSn;
  142. }
  143. /**
  144. * 设置:商户编号
  145. */
  146. public void setMerchSn(String merchSn) {
  147. this.merchSn = merchSn;
  148. }
  149. /**
  150. * 获取:商户编号
  151. */
  152. public String getMerchSn() {
  153. return merchSn;
  154. }
  155. /**
  156. * 设置:门店编号
  157. */
  158. public void setStoreNumber(String storeNumber) {
  159. this.storeNumber = storeNumber;
  160. }
  161. /**
  162. * 获取:门店编号
  163. */
  164. public String getStoreNumber() {
  165. return storeNumber;
  166. }
  167. /**
  168. * 设置:批次编号
  169. */
  170. public void setBatchSn(String batchSn) {
  171. this.batchSn = batchSn;
  172. }
  173. /**
  174. * 获取:批次编号
  175. */
  176. public String getBatchSn() {
  177. return batchSn;
  178. }
  179. /**
  180. * 设置:日常价
  181. */
  182. public void setDailyPrice(BigDecimal dailyPrice) {
  183. this.dailyPrice = dailyPrice;
  184. }
  185. /**
  186. * 获取:日常价
  187. */
  188. public BigDecimal getDailyPrice() {
  189. return dailyPrice;
  190. }
  191. /**
  192. * 设置:活动价
  193. */
  194. public void setActiveityPrice(BigDecimal activeityPrice) {
  195. this.activeityPrice = activeityPrice;
  196. }
  197. /**
  198. * 获取:活动价
  199. */
  200. public BigDecimal getActiveityPrice() {
  201. return activeityPrice;
  202. }
  203. /**
  204. * 设置:价格时间
  205. */
  206. public void setPriceTime(Date priceTime) {
  207. this.priceTime = priceTime;
  208. }
  209. /**
  210. * 获取:价格时间
  211. */
  212. public Date getPriceTime() {
  213. return priceTime;
  214. }
  215. /**
  216. * 设置:价格日期
  217. */
  218. public void setRetailPriceDate(Date retailPriceDate) {
  219. this.retailPriceDate = retailPriceDate;
  220. }
  221. /**
  222. * 获取:价格日期
  223. */
  224. public Date getRetailPriceDate() {
  225. return retailPriceDate;
  226. }
  227. /**
  228. * 设置:+创建人编号
  229. */
  230. public void setCreaterSn(String createrSn) {
  231. this.createrSn = createrSn;
  232. }
  233. /**
  234. * 获取:+创建人编号
  235. */
  236. public String getCreaterSn() {
  237. return createrSn;
  238. }
  239. /**
  240. * 设置:+创建时间,yyyy-MM-dd HH:mm:ss
  241. */
  242. public void setCreateTime(Date createTime) {
  243. this.createTime = createTime;
  244. }
  245. /**
  246. * 获取:+创建时间,yyyy-MM-dd HH:mm:ss
  247. */
  248. public Date getCreateTime() {
  249. return createTime;
  250. }
  251. /**
  252. * 设置:+修改人编号
  253. */
  254. public void setModerSn(String moderSn) {
  255. this.moderSn = moderSn;
  256. }
  257. /**
  258. * 获取:+修改人编号
  259. */
  260. public String getModerSn() {
  261. return moderSn;
  262. }
  263. /**
  264. * 设置:+修改时间,yyyy-MM-dd HH:mm:ss
  265. */
  266. public void setModTime(Date modTime) {
  267. this.modTime = modTime;
  268. }
  269. /**
  270. * 获取:+修改时间,yyyy-MM-dd HH:mm:ss
  271. */
  272. public Date getModTime() {
  273. return modTime;
  274. }
  275. /**
  276. * 设置:+时间戳
  277. */
  278. public void setTstm(Date tstm) {
  279. this.tstm = tstm;
  280. }
  281. /**
  282. * 获取:+时间戳
  283. */
  284. public Date getTstm() {
  285. return tstm;
  286. }
  287. }