package com.tejia.lijin.app.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
|
/**
|
* Created by weikou2015 on 2018/5/15.
|
*/
|
|
public class CouponInfo implements Serializable {
|
|
@Expose
|
String amount;// 券面额
|
@Expose
|
String startTime;// 券开始时间
|
@Expose
|
String endTime;// 券结束时间
|
@Expose
|
String leftCount;// 剩余数量
|
@Expose
|
String link;// 券链接
|
@Expose
|
String token;// 券口令
|
@Expose
|
String totalCount;//券总数量
|
@Expose
|
private String startFee;//起始金额
|
@Expose
|
private boolean shopCoupon;//是否是店铺券
|
|
|
public boolean isShopCoupon() {
|
return shopCoupon;
|
}
|
|
public void setShopCoupon(boolean shopCoupon) {
|
this.shopCoupon = shopCoupon;
|
}
|
|
public String getAmount() {
|
return amount;
|
}
|
|
public void setAmount(String amount) {
|
this.amount = amount;
|
}
|
|
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 getLeftCount() {
|
return leftCount;
|
}
|
|
public void setLeftCount(String leftCount) {
|
this.leftCount = leftCount;
|
}
|
|
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;
|
}
|
|
public String getTotalCount() {
|
return totalCount;
|
}
|
|
public void setTotalCount(String totalCount) {
|
this.totalCount = totalCount;
|
}
|
|
public String getStartFee() {
|
return startFee;
|
}
|
|
public void setStartFee(String startFee) {
|
this.startFee = startFee;
|
}
|
|
}
|