Helius
2021-12-20 bda2b9375e9e7fbefe22fbc56b2ea85e9b12f9d7
1
2
3
4
5
6
7
8
9
10
11
12
13
package cc.mrbird.febs.video.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "ApiVideoHistoryDto", description = "接收参数类")
public class ApiVideoHistoryDto {
 
    @ApiModelProperty(value = "观看历史IDS", example = "1,2,3")
    private String ids;
}