无关风月
1 天以前 71656127d2d3fa023eb767343a9ac01172f2802d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.dsh.account.vo;
 
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("会员权益门票列表")
public class TicketVipResp {
 
 
    @ApiModelProperty("门票名称")
    private String name;
 
    @ApiModelProperty("领取后x天有效")
    private Integer time;
 
    @ApiModelProperty("数量 张")
    private Integer count;
 
}