eleme.openapi.sdk.api.entity.activity.SkuCouponDetail Maven / Gradle / Ivy
The newest version!
package eleme.openapi.sdk.api.entity.activity;
import eleme.openapi.sdk.api.enumeration.activity.*;
import eleme.openapi.sdk.api.entity.activity.*;
import java.util.*;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonFormat;
public class SkuCouponDetail{
/**
* 优惠内容
*/
private Double content;
public Double getContent() {
return content;
}
public void setContent(Double content) {
this.content = content;
}
/**
* 优惠券名称
*/
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
/**
* 优惠类型
*/
private Integer benefitTyp;
public Integer getBenefitTyp() {
return benefitTyp;
}
public void setBenefitTyp(Integer benefitTyp) {
this.benefitTyp = benefitTyp;
}
/**
* 券有效期
*/
private Long duration;
public Long getDuration() {
return duration;
}
public void setDuration(Long duration) {
this.duration = duration;
}
/**
* 商品规格编号
*/
private Long specId;
public Long getSpecId() {
return specId;
}
public void setSpecId(Long specId) {
this.specId = specId;
}
/**
* 店铺id
*/
private Long shopId;
public Long getShopId() {
return shopId;
}
public void setShopId(Long shopId) {
this.shopId = shopId;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy