New file |
| | |
| | | package com.dsh.account.model.vo.userBenefitDetail; |
| | | |
| | | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | public class ExchangeDetailsResponse { |
| | | |
| | | @ApiModelProperty(value = "记录id") |
| | | private Long detailsId; |
| | | |
| | | @ApiModelProperty(value = "商品名称") |
| | | private String goodName; |
| | | |
| | | @ApiModelProperty(value = "支付类型(积分 / 积分+现金)") |
| | | private String requiredType; |
| | | |
| | | @ApiModelProperty(value = "有效期开始时间") |
| | | private String startTime; |
| | | |
| | | @ApiModelProperty(value = "有效期结束时间") |
| | | private String endTime; |
| | | |
| | | @ApiModelProperty(value = "使用状态 (1已使用 2未使用)") |
| | | private Integer useStatus; |
| | | |
| | | @ApiModelProperty(value = "商品类型 1实物 2课包 3门票 4优惠券") |
| | | private Integer goodType; |
| | | |
| | | } |