zbb378@sohu.com
2024-11-04 b2bad51be3c8d3e78d7f81a19415faeac2d0297c
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package com.nova.sankuai.domain.api.liexiong;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author weikangdi
 * @create 2021/12/22
 */
@Data
@ApiModel(value = "烈熊会员卡信息")
public class LieXiongCard {
 
    @ApiModelProperty(value = "卡类ID")
    private String id;
 
    @ApiModelProperty(value = "卡名称")
    private String name;
 
    @ApiModelProperty(value = "图标")
    private Icon icon;
 
    @ApiModelProperty(value = "周期类型")
    private String cycleType;
 
    @ApiModelProperty(value = "标价")
    private Integer markedPrice;
 
    @ApiModelProperty(value = "实际支付价格")
    private Integer sellingPrice;
 
    @Data
    @ApiModel(value = "戒易贷会员卡图标")
    public static class Icon {
 
        @ApiModelProperty(value = "宽度")
        private Integer width;
 
        @ApiModelProperty(value = "高度")
        private Integer height;
 
        @ApiModelProperty(value = "地址后部分")
        private String key;
 
    }
}