fix
Helius
2021-12-22 ca17d6ee8df1e7c28645e70f43deb6b60a8890f8
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;
}