MkActivitiesGetOneFreeGoodsEntity.java 5.9 KB

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