package com.yeshi.fanli.dto.jd;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
|
public class JDCouponInfo implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
private Integer bindType;//券种类 (优惠券种类:0 - 全品类,1 - 限品类(自营商品),2 - 限店铺,3 - 店铺限商品券)
|
private BigDecimal discount;//券面额
|
private String link;//券链接
|
private Integer platformType;//券使用平台 (平台类型:0 - 全平台券,1 - 限平台券)
|
private BigDecimal quota;//券消费限额
|
private Long getStartTime;//领取开始时间(时间戳,毫秒)
|
private Long getEndTime;//券领取结束时间(时间戳,毫秒)
|
private Long useStartTime;//券有效使用开始时间(时间戳,毫秒)
|
private Long useEndTime;//券有效使用结束时间(时间戳,毫秒)
|
public Integer getBindType() {
|
return bindType;
|
}
|
public void setBindType(Integer bindType) {
|
this.bindType = bindType;
|
}
|
public BigDecimal getDiscount() {
|
return discount;
|
}
|
public void setDiscount(BigDecimal discount) {
|
this.discount = discount;
|
}
|
public String getLink() {
|
return link;
|
}
|
public void setLink(String link) {
|
this.link = link;
|
}
|
public Integer getPlatformType() {
|
return platformType;
|
}
|
public void setPlatformType(Integer platformType) {
|
this.platformType = platformType;
|
}
|
public BigDecimal getQuota() {
|
return quota;
|
}
|
public void setQuota(BigDecimal quota) {
|
this.quota = quota;
|
}
|
public Long getGetStartTime() {
|
return getStartTime;
|
}
|
public void setGetStartTime(Long getStartTime) {
|
this.getStartTime = getStartTime;
|
}
|
public Long getGetEndTime() {
|
return getEndTime;
|
}
|
public void setGetEndTime(Long getEndTime) {
|
this.getEndTime = getEndTime;
|
}
|
public Long getUseStartTime() {
|
return useStartTime;
|
}
|
public void setUseStartTime(Long useStartTime) {
|
this.useStartTime = useStartTime;
|
}
|
public Long getUseEndTime() {
|
return useEndTime;
|
}
|
public void setUseEndTime(Long useEndTime) {
|
this.useEndTime = useEndTime;
|
}
|
|
}
|