MkActivitiesGetOneFreeGoodsEntity.java 6.0 KB

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