admin
2019-11-23 51a4ff5d777028d52a19c314a99f796334cb7b51
fanli/src/main/java/com/yeshi/fanli/vo/goods/CouponInfoVO.java
@@ -1,6 +1,9 @@
package com.yeshi.fanli.vo.goods;
import java.io.Serializable;
import java.math.BigDecimal;
import com.google.gson.annotations.Expose;
/**
 * 券信息
@@ -8,14 +11,28 @@
 * @author Administrator
 *
 */
public class CouponInfoVO {
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; // 券口令
   public int getTotalCount() {
      return totalCount;
@@ -73,4 +90,12 @@
      this.link = link;
   }
   public String getToken() {
      return token;
   }
   public void setToken(String token) {
      this.token = token;
   }
}