无关风月
11 小时以前 4c9035836c18886883d3f69d8443c53d15b068fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.dsh.other.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;
    @ApiModelProperty("有效时间(2021-05-05)")
    private String effectiveTime;
    @ApiModelProperty("有效时间开始(2021-05-05)")
    private String startTime;
 
}