MkActivitiesGetOneFreeGoodsEntity.java 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. package com.kmall.admin.entity;
  2. import java.io.Serializable;
  3. import java.math.BigDecimal;
  4. import java.util.Date;
  5. /**
  6. * 买一送一商品配置表
  7. 说明:购买商品条码,购买商品品牌,购买商品系列三列不可以同是为空
  8. -&#实体
  9. * 表名 mk_activities_get_one_free_goods
  10. *
  11. * @author emato
  12. * @email admin@qhdswl.com
  13. * @date 2020-09-22 09:44:34
  14. */
  15. public class MkActivitiesGetOneFreeGoodsEntity implements Serializable {
  16. private static final long serialVersionUID = 1L;
  17. /**
  18. * 编号
  19. */
  20. private Long mkaFreeId;
  21. /**
  22. * 产品中文名
  23. */
  24. private String productName;
  25. /**
  26. * 每日最低价
  27. */
  28. private BigDecimal edlp;
  29. /**
  30. * 建议零售价
  31. */
  32. private BigDecimal suggestedRetailPrice;
  33. /**
  34. * 活动价格
  35. */
  36. private BigDecimal activityPrice;
  37. /**
  38. * 门店编号
  39. */
  40. private String shopSn;
  41. /**
  42. * 商品编码
  43. */
  44. private String goodsSn;
  45. /**
  46. * 条形码
  47. */
  48. private String barcode;
  49. /**
  50. * 商品品牌
  51. */
  52. private String productBrand;
  53. /**
  54. * 商品系列
  55. */
  56. private String productSeries;
  57. /**
  58. * 赠品条码
  59. */
  60. private String giftBarcode;
  61. /**
  62. * 营销活动编号
  63. */
  64. private Long mkaId;
  65. /**
  66. * 创建时间
  67. */
  68. private Date createTime;
  69. /**
  70. * 创建人编号
  71. */
  72. private String createrSn;
  73. /**
  74. * 修改人编号
  75. */
  76. private String moderSn;
  77. /**
  78. * 修改时间
  79. */
  80. private Date updateTime;
  81. /**
  82. * 设置:编号
  83. */
  84. public void setMkaFreeId(Long mkaFreeId) {
  85. this.mkaFreeId = mkaFreeId;
  86. }
  87. /**
  88. * 获取:编号
  89. */
  90. public Long getMkaFreeId() {
  91. return mkaFreeId;
  92. }
  93. /**
  94. * 设置:产品中文名
  95. */
  96. public void setProductName(String productName) {
  97. this.productName = productName;
  98. }
  99. /**
  100. * 获取:产品中文名
  101. */
  102. public String getProductName() {
  103. return productName;
  104. }
  105. /**
  106. * 设置:每日最低价
  107. */
  108. public void setEdlp(BigDecimal edlp) {
  109. this.edlp = edlp;
  110. }
  111. /**
  112. * 获取:每日最低价
  113. */
  114. public BigDecimal getEdlp() {
  115. return edlp;
  116. }
  117. /**
  118. * 设置:建议零售价
  119. */
  120. public void setSuggestedRetailPrice(BigDecimal suggestedRetailPrice) {
  121. this.suggestedRetailPrice = suggestedRetailPrice;
  122. }
  123. /**
  124. * 获取:建议零售价
  125. */
  126. public BigDecimal getSuggestedRetailPrice() {
  127. return suggestedRetailPrice;
  128. }
  129. /**
  130. * 设置:活动价格
  131. */
  132. public void setActivityPrice(BigDecimal activityPrice) {
  133. this.activityPrice = activityPrice;
  134. }
  135. /**
  136. * 获取:活动价格
  137. */
  138. public BigDecimal getActivityPrice() {
  139. return activityPrice;
  140. }
  141. /**
  142. * 设置:门店编号
  143. */
  144. public void setShopSn(String shopSn) {
  145. this.shopSn = shopSn;
  146. }
  147. /**
  148. * 获取:门店编号
  149. */
  150. public String getShopSn() {
  151. return shopSn;
  152. }
  153. /**
  154. * 设置:商品编码
  155. */
  156. public void setGoodsSn(String goodsSn) {
  157. this.goodsSn = goodsSn;
  158. }
  159. /**
  160. * 获取:商品编码
  161. */
  162. public String getGoodsSn() {
  163. return goodsSn;
  164. }
  165. /**
  166. * 设置:条形码
  167. */
  168. public void setBarcode(String barcode) {
  169. this.barcode = barcode;
  170. }
  171. /**
  172. * 获取:条形码
  173. */
  174. public String getBarcode() {
  175. return barcode;
  176. }
  177. /**
  178. * 设置:商品品牌
  179. */
  180. public void setProductBrand(String productBrand) {
  181. this.productBrand = productBrand;
  182. }
  183. /**
  184. * 获取:商品品牌
  185. */
  186. public String getProductBrand() {
  187. return productBrand;
  188. }
  189. /**
  190. * 设置:商品系列
  191. */
  192. public void setProductSeries(String productSeries) {
  193. this.productSeries = productSeries;
  194. }
  195. /**
  196. * 获取:商品系列
  197. */
  198. public String getProductSeries() {
  199. return productSeries;
  200. }
  201. /**
  202. * 设置:赠品条码
  203. */
  204. public void setGiftBarcode(String giftBarcode) {
  205. this.giftBarcode = giftBarcode;
  206. }
  207. /**
  208. * 获取:赠品条码
  209. */
  210. public String getGiftBarcode() {
  211. return giftBarcode;
  212. }
  213. /**
  214. * 设置:营销活动编号
  215. */
  216. public void setMkaId(Long mkaId) {
  217. this.mkaId = mkaId;
  218. }
  219. /**
  220. * 获取:营销活动编号
  221. */
  222. public Long getMkaId() {
  223. return mkaId;
  224. }
  225. /**
  226. * 设置:创建时间
  227. */
  228. public void setCreateTime(Date createTime) {
  229. this.createTime = createTime;
  230. }
  231. /**
  232. * 获取:创建时间
  233. */
  234. public Date getCreateTime() {
  235. return createTime;
  236. }
  237. /**
  238. * 设置:创建人编号
  239. */
  240. public void setCreaterSn(String createrSn) {
  241. this.createrSn = createrSn;
  242. }
  243. /**
  244. * 获取:创建人编号
  245. */
  246. public String getCreaterSn() {
  247. return createrSn;
  248. }
  249. /**
  250. * 设置:修改人编号
  251. */
  252. public void setModerSn(String moderSn) {
  253. this.moderSn = moderSn;
  254. }
  255. /**
  256. * 获取:修改人编号
  257. */
  258. public String getModerSn() {
  259. return moderSn;
  260. }
  261. /**
  262. * 设置:修改时间
  263. */
  264. public void setUpdateTime(Date updateTime) {
  265. this.updateTime = updateTime;
  266. }
  267. /**
  268. * 获取:修改时间
  269. */
  270. public Date getUpdateTime() {
  271. return updateTime;
  272. }
  273. }