FullReductionDto.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. package com.kmall.admin.dto;
  2. import java.io.Serializable;
  3. /**
  4. * @author zhangchuangbiao
  5. * @version 1.0
  6. * 2020-09-24 10:01
  7. * 满减的模板
  8. */
  9. public class FullReductionDto implements Serializable {
  10. private static final long serialVersionUID = 1L;
  11. private String storeId; // 门店编号
  12. private String fullReductionPrice; // 满减达到金额
  13. private String brand; // 商品品牌
  14. private String goodsSn; // 商品编号
  15. private String barCode; // 商品条码
  16. private String discountedPrice; // 优惠金额
  17. private String deadline; // 截止日期
  18. public static long getSerialVersionUID() {
  19. return serialVersionUID;
  20. }
  21. public String getStoreId() {
  22. return storeId;
  23. }
  24. public void setStoreId(String storeId) {
  25. this.storeId = storeId;
  26. }
  27. public String getFullReductionPrice() {
  28. return fullReductionPrice;
  29. }
  30. public void setFullReductionPrice(String fullReductionPrice) {
  31. this.fullReductionPrice = fullReductionPrice;
  32. }
  33. public String getBrand() {
  34. return brand;
  35. }
  36. public void setBrand(String brand) {
  37. this.brand = brand;
  38. }
  39. public String getGoodsSn() {
  40. return goodsSn;
  41. }
  42. public void setGoodsSn(String goodsSn) {
  43. this.goodsSn = goodsSn;
  44. }
  45. public String getBarCode() {
  46. return barCode;
  47. }
  48. public void setBarCode(String barCode) {
  49. this.barCode = barCode;
  50. }
  51. public String getDiscountedPrice() {
  52. return discountedPrice;
  53. }
  54. public void setDiscountedPrice(String discountedPrice) {
  55. this.discountedPrice = discountedPrice;
  56. }
  57. public String getDeadline() {
  58. return deadline;
  59. }
  60. public void setDeadline(String deadline) {
  61. this.deadline = deadline;
  62. }
  63. }