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 HealthVideoQuery extends AbsQuery { @ApiModelProperty("标题") private String title; @ApiModelProperty("视频标签") private List tagList; @ApiModelProperty("作者") private String authorId; @ApiModelProperty("状态") private String status; /** * @see VideoTypeEnum */ @ApiModelProperty("视频类型:视频、大健康、神厨,默认不传查视频") private String videoType = VideoTypeEnum.HEALTH.getValue(); }