MkActivitiesGetOneFreeGoodsEntity.java 5.5 KB

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