xiangpei
2025-06-04 434ea8cef0d23ee20b6047631ef4afa371b43eb3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;
 
    /**
     * 是否是本人查询
     */
    @ApiModelProperty(hidden = true)
    private Boolean authorSelf;
 
}