Air
2024-11-04 29c405353029f033e187e8dc033b93385365ee43
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.nova.sankuai.domain.api.yangqianguan.response;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author weikangdi
 * @create 2022/6/14
 */
@Data
@ApiModel(value = "获取用户的权益卡信息响应参数")
public class RightsCardResponse {
 
    @ApiModelProperty(value = "无权益卡")
    public static final Integer STATUS_NONE = 0;
    @ApiModelProperty(value = "未购买")
    public static final Integer STATUS_NO_BUY = 1;
    @ApiModelProperty(value = "已购买")
    public static final Integer STATUS_BUY = 2;
    @ApiModelProperty(value = "已过期")
    public static final Integer STATUS_EXPIRED = 3;
 
    @ApiModelProperty(value = "权益卡状态")
    private Integer status;
 
    @ApiModelProperty(value = "权益卡金额")
    private Double amount;
 
    @ApiModelProperty(value = "权益卡地址")
    private String url;
}