MkActivitiesDiscountEntity.java 4.7 KB

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