package com.yeshi.fanli.vo.goods;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
|
import com.google.gson.annotations.Expose;
|
import org.yeshi.utils.MoneyBigDecimalUtil;
|
|
/**
|
* 券信息
|
*
|
* @author Administrator
|
*/
|
public class CouponInfoVO implements Serializable {
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
@Expose
|
private int totalCount;// 总数量
|
@Expose
|
private int leftCount;// 剩余数量
|
@Expose
|
private BigDecimal amount;// 券面额
|
@Expose
|
private BigDecimal startFee;// 使用开始金额
|
@Expose
|
private String startTime;// 开始时间
|
@Expose
|
private String endTime;// 结束时间
|
@Expose
|
private String link;// 券链接
|
@Expose
|
private String token; // 券口令
|
@Expose
|
private boolean shopCoupon;// 是否为店铺券
|
|
|
|
public boolean isShopCoupon() {
|
return shopCoupon;
|
}
|
|
public void setShopCoupon(boolean shopCoupon) {
|
this.shopCoupon = shopCoupon;
|
}
|
|
public int getTotalCount() {
|
return totalCount;
|
}
|
|
public void setTotalCount(int totalCount) {
|
this.totalCount = totalCount;
|
}
|
|
public int getLeftCount() {
|
return leftCount;
|
}
|
|
public void setLeftCount(int leftCount) {
|
this.leftCount = leftCount;
|
}
|
|
public BigDecimal getAmount() {
|
return amount;
|
}
|
|
public void setAmount(BigDecimal amount) {
|
this.amount = amount;
|
}
|
|
public BigDecimal getStartFee() {
|
return startFee;
|
}
|
|
public void setStartFee(BigDecimal startFee) {
|
this.startFee = startFee;
|
}
|
|
public String getStartTime() {
|
return startTime;
|
}
|
|
public void setStartTime(String startTime) {
|
this.startTime = startTime;
|
}
|
|
public String getEndTime() {
|
return endTime;
|
}
|
|
public void setEndTime(String endTime) {
|
this.endTime = endTime;
|
}
|
|
public String getLink() {
|
return link;
|
}
|
|
public void setLink(String link) {
|
this.link = link;
|
}
|
|
public String getToken() {
|
return token;
|
}
|
|
public void setToken(String token) {
|
this.token = token;
|
}
|
|
}
|