无关风月
昨天 4c07eb5512914ebd38e1c1e4455094577864c9f0
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;
 
}