xiangpei
8 天以前 8065107726ad1fc13591c9bc47819207948bc45c
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
28
29
30
31
32
33
34
35
36
37
38
package cn.lili.modules.lmk.domain.query;
 
import cn.lili.base.AbsQuery;
import cn.lili.modules.lmk.enums.general.VideoTypeEnum;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
/**
 * 视频内容查询
 *
 * @author xp
 * @since 2025-05-16
 */
@Data
@ApiModel(value = "平台端厨神Video查询参数", description = "视频内容查询参数")
public class KitchenVideoQuery extends AbsQuery {
 
    @ApiModelProperty("标题")
    private String title;
 
    @ApiModelProperty("视频标签")
    private List<String> typeList;
 
    @ApiModelProperty("作者")
    private String authorId;
 
    @ApiModelProperty("状态")
    private String status;
 
    /**
     * @see VideoTypeEnum
     */
    @ApiModelProperty("视频类型:视频、大健康、神厨,默认不传查视频")
    private String videoType = VideoTypeEnum.COOK.getValue();
}