| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | public class ExchangeDetailsResponse { |
| | | |
| | |
| | | @ApiModelProperty(value = "商品名称") |
| | | private String goodName; |
| | | |
| | | @ApiModelProperty(value = "支付类型(积分 / 积分+现金)") |
| | | private String requiredType; |
| | | @ApiModelProperty(value = "积分") |
| | | private Integer integral; |
| | | |
| | | @ApiModelProperty(value = "现金") |
| | | private BigDecimal cash; |
| | | |
| | | @ApiModelProperty(value = "兑换方式(1=积分,2=积分+现金)") |
| | | private Integer exchangeType; |
| | | |
| | | @ApiModelProperty(value = "有效期开始时间") |
| | | private String startTime; |
| | |
| | | @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; |
| | | |
| | | } |