| | |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | public class ExchangeDetailsResponse { |
| | |
| | | @ApiModelProperty(value = "现金") |
| | | private BigDecimal cash; |
| | | |
| | | @ApiModelProperty(value = "兑换方式(1=积分,2=积分+现金)") |
| | | @ApiModelProperty(value = "兑换方式(1=积分,2=积分+现金 3=现金 4=会员赠送 当该字段为4时 展示的二维码内容增加一个vipDetail:当前数据id)") |
| | | private Integer exchangeType; |
| | | |
| | | @ApiModelProperty(value = "有效期开始时间") |
| | |
| | | @ApiModelProperty(value = "有效期结束时间") |
| | | private String endTime; |
| | | |
| | | @ApiModelProperty(value = "使用状态 (1已使用 2未使用)") |
| | | @ApiModelProperty(value = "使用状态 (1已使用 2未使用 3 已过期)") |
| | | private Integer useStatus; |
| | | |
| | | @ApiModelProperty(value = "商品类型 1实物 2课包 3门票 4优惠券") |
| | | private Integer goodType; |
| | | |
| | | |
| | | private Integer userId; |
| | | |
| | | |
| | | private List<Integer> rid; |
| | | |
| | | private List<Integer> sid; |
| | | |
| | | |
| | | |
| | | @ApiModelProperty(value = "1日卡 2月卡 3季卡 4年卡") |
| | | private Integer cardType; |
| | | |
| | | } |