xiaoyong931011
2021-12-16 cc16966cec3bd2d50b97d18a29ec5f359defa6ce
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package cc.mrbird.febs.video.dto;
 
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
@Data
@ApiModel(value = "ApiMyVideoCollectionDto", description = "接收参数类")
public class AdminSetVipDto {
 
    private Long id;
 
    private String vipType;
 
}