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;
|
|
}
|