无关风月
1 天以前 ac3e9a7f0b21fb630049f9e191bd760eefd21467
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;
 
}