| | |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | public class PointDetailsVo { |
| | | public class PointDetailsVo { |
| | | |
| | | @ApiModelProperty(value = "记录id") |
| | | private Integer detailsId; |
| | | private Long detailsId; |
| | | |
| | | @ApiModelProperty(value = "图片集") |
| | | private List<String> pics; |
| | |
| | | @ApiModelProperty(value = "商品名称") |
| | | private String goodName; |
| | | |
| | | @ApiModelProperty(value = "适用状态(1已使用 2未使用)") |
| | | @ApiModelProperty(value = "适用状态(1已使用 2未使用 3已过期)") |
| | | private Integer useType; |
| | | |
| | | @ApiModelProperty(value = "有效期开始时间") |
| | |
| | | private Integer exchangeType; |
| | | |
| | | @ApiModelProperty(value = "1日卡 2月卡 3季卡 4年卡") |
| | | private Integer cardType; |
| | | private Integer cardType; |
| | | |
| | | @ApiModelProperty(value = "使用范围") |
| | | private Integer exchangeAddrType; |
| | | } |