1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package cn.lili.modules.lmk.domain.query;
|
| import cn.lili.base.AbsQuery;
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| /**
| * 视频内容查询
| *
| * @author xp
| * @since 2025-05-16
| */
| @Data
| @ApiModel(value = "Video查询参数", description = "视频内容查询参数")
| public class AuthorVideoQuery extends AbsQuery {
|
| @ApiModelProperty("作者id")
| private String authorId;
|
| }
|
|