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; } }