xiaoyong931011
2021-12-22 6c920885a9bc407f2f05e204ae9769631c4c80e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package cc.mrbird.febs.video.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author wzy
 * @date 2021-12-17
 **/
@Data
@ApiModel(value = "VipBuyDto", description = "会员购买")
public class VipBuyDto {
 
    @ApiModelProperty(value = "购买会员类型 MONTH/PERIOD/YEAR", example = "YEAR")
    private String type;
}