无关风月
3 天以前 f172e16d519c0abd6c888dce5d246844a93a7790
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.guns.modular.system.model;
 
 
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;
 
}