MkActivitiesFullReductionEntity.java 4.6 KB

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