123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- package com.kmall.admin.dto;
- import java.io.Serializable;
- /**
- * @author zhangchuangbiao
- * @version 1.0
- * 2020-09-24 10:01
- * 满减的模板
- */
- public class FullReductionDto implements Serializable {
- private static final long serialVersionUID = 1L;
- private String storeId; // 门店编号
- private String fullReductionPrice; // 满减达到金额
- private String brand; // 商品品牌
- private String goodsSn; // 商品编号
- private String barCode; // 商品条码
- private String discountedPrice; // 优惠金额
- private String deadline; // 截止日期
- public static long getSerialVersionUID() {
- return serialVersionUID;
- }
- public String getStoreId() {
- return storeId;
- }
- public void setStoreId(String storeId) {
- this.storeId = storeId;
- }
- public String getFullReductionPrice() {
- return fullReductionPrice;
- }
- public void setFullReductionPrice(String fullReductionPrice) {
- this.fullReductionPrice = fullReductionPrice;
- }
- public String getBrand() {
- return brand;
- }
- public void setBrand(String brand) {
- this.brand = brand;
- }
- public String getGoodsSn() {
- return goodsSn;
- }
- public void setGoodsSn(String goodsSn) {
- this.goodsSn = goodsSn;
- }
- public String getBarCode() {
- return barCode;
- }
- public void setBarCode(String barCode) {
- this.barCode = barCode;
- }
- public String getDiscountedPrice() {
- return discountedPrice;
- }
- public void setDiscountedPrice(String discountedPrice) {
- this.discountedPrice = discountedPrice;
- }
- public String getDeadline() {
- return deadline;
- }
- public void setDeadline(String deadline) {
- this.deadline = deadline;
- }
- }
|