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-13 */ @Data @ApiModel(value = "VideoTag查询参数", description = "视频标签查询参数") public class WxVideoTagQuery { @ApiModelProperty("标签名称") private String tagName; @ApiModelProperty("搜索类型:HOT(热门标签)、SEARCH(根据输入的标签名称搜索)") private String searchType = "HOT"; }