| | |
| | | package com.yeshi.fanli.vo.goods;
|
| | |
|
| | | import java.io.Serializable;
|
| | | import java.math.BigDecimal;
|
| | |
|
| | | import com.google.gson.annotations.Expose;
|
| | |
|
| | | /**
|
| | | * 券信息
|
| | |
| | | * @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() {
|