xiaoyong931011
2021-12-22 ab7a2f143723c84704fcf413678ab79ec7ffe66e
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;
}