1
0

MkActivitiesFullGiftEntity.java 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. package com.kmall.admin.entity;
  2. import java.io.Serializable;
  3. import java.math.BigDecimal;
  4. import java.util.Date;
  5. /**
  6. * 营销活动-满赠实体
  7. * 表名 mk_activities_full_gift
  8. *
  9. * @author emato
  10. * @email admin@qhdswl.com
  11. * @date 2020-09-22 09:44:34
  12. */
  13. public class MkActivitiesFullGiftEntity implements Serializable {
  14. private static final long serialVersionUID = 1L;
  15. /**
  16. * 编号
  17. */
  18. private Long mafrId;
  19. /**
  20. * 产品中文名
  21. */
  22. private String productName;
  23. /**
  24. * 门店编号
  25. */
  26. private String shopSn;
  27. /**
  28. * 商品编码
  29. */
  30. private String goodsSn;
  31. /**
  32. * 条形码
  33. */
  34. private String barcode;
  35. /**
  36. * 商品品牌
  37. */
  38. private String productBrand;
  39. /**
  40. * 商品系列
  41. */
  42. private String productSeries;
  43. /**
  44. * 满足条件金额
  45. */
  46. private BigDecimal qualifiedAmount;
  47. /**
  48. * 赠品条码
  49. */
  50. private String giftBarcode;
  51. /**
  52. * 创建时间
  53. */
  54. private Date createTime;
  55. /**
  56. * 创建人编号
  57. */
  58. private String createrSn;
  59. /**
  60. * 修改人编号
  61. */
  62. private String moderSn;
  63. /**
  64. * 修改时间
  65. */
  66. private Date updateTime;
  67. /**
  68. * 设置:编号
  69. */
  70. public void setMafrId(Long mafrId) {
  71. this.mafrId = mafrId;
  72. }
  73. /**
  74. * 获取:编号
  75. */
  76. public Long getMafrId() {
  77. return mafrId;
  78. }
  79. /**
  80. * 设置:产品中文名
  81. */
  82. public void setProductName(String productName) {
  83. this.productName = productName;
  84. }
  85. /**
  86. * 获取:产品中文名
  87. */
  88. public String getProductName() {
  89. return productName;
  90. }
  91. /**
  92. * 设置:门店编号
  93. */
  94. public void setShopSn(String shopSn) {
  95. this.shopSn = shopSn;
  96. }
  97. /**
  98. * 获取:门店编号
  99. */
  100. public String getShopSn() {
  101. return shopSn;
  102. }
  103. /**
  104. * 设置:商品编码
  105. */
  106. public void setGoodsSn(String goodsSn) {
  107. this.goodsSn = goodsSn;
  108. }
  109. /**
  110. * 获取:商品编码
  111. */
  112. public String getGoodsSn() {
  113. return goodsSn;
  114. }
  115. /**
  116. * 设置:条形码
  117. */
  118. public void setBarcode(String barcode) {
  119. this.barcode = barcode;
  120. }
  121. /**
  122. * 获取:条形码
  123. */
  124. public String getBarcode() {
  125. return barcode;
  126. }
  127. /**
  128. * 设置:商品品牌
  129. */
  130. public void setProductBrand(String productBrand) {
  131. this.productBrand = productBrand;
  132. }
  133. /**
  134. * 获取:商品品牌
  135. */
  136. public String getProductBrand() {
  137. return productBrand;
  138. }
  139. /**
  140. * 设置:商品系列
  141. */
  142. public void setProductSeries(String productSeries) {
  143. this.productSeries = productSeries;
  144. }
  145. /**
  146. * 获取:商品系列
  147. */
  148. public String getProductSeries() {
  149. return productSeries;
  150. }
  151. /**
  152. * 设置:满足条件金额
  153. */
  154. public void setQualifiedAmount(BigDecimal qualifiedAmount) {
  155. this.qualifiedAmount = qualifiedAmount;
  156. }
  157. /**
  158. * 获取:满足条件金额
  159. */
  160. public BigDecimal getQualifiedAmount() {
  161. return qualifiedAmount;
  162. }
  163. /**
  164. * 设置:赠品条码
  165. */
  166. public void setGiftBarcode(String giftBarcode) {
  167. this.giftBarcode = giftBarcode;
  168. }
  169. /**
  170. * 获取:赠品条码
  171. */
  172. public String getGiftBarcode() {
  173. return giftBarcode;
  174. }
  175. /**
  176. * 设置:创建时间
  177. */
  178. public void setCreateTime(Date createTime) {
  179. this.createTime = createTime;
  180. }
  181. /**
  182. * 获取:创建时间
  183. */
  184. public Date getCreateTime() {
  185. return createTime;
  186. }
  187. /**
  188. * 设置:创建人编号
  189. */
  190. public void setCreaterSn(String createrSn) {
  191. this.createrSn = createrSn;
  192. }
  193. /**
  194. * 获取:创建人编号
  195. */
  196. public String getCreaterSn() {
  197. return createrSn;
  198. }
  199. /**
  200. * 设置:修改人编号
  201. */
  202. public void setModerSn(String moderSn) {
  203. this.moderSn = moderSn;
  204. }
  205. /**
  206. * 获取:修改人编号
  207. */
  208. public String getModerSn() {
  209. return moderSn;
  210. }
  211. /**
  212. * 设置:修改时间
  213. */
  214. public void setUpdateTime(Date updateTime) {
  215. this.updateTime = updateTime;
  216. }
  217. /**
  218. * 获取:修改时间
  219. */
  220. public Date getUpdateTime() {
  221. return updateTime;
  222. }
  223. }