xiangpei
2025-06-30 d49707858ddd3ba73ded357bdaf8044c8b4b9c40
framework/src/main/java/cn/lili/modules/lmk/domain/vo/SimpleVideoTagVO.java
@@ -6,6 +6,8 @@
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.beans.BeanUtils;
import org.springframework.data.elasticsearch.annotations.Field;
import org.springframework.data.elasticsearch.annotations.FieldType;
import org.springframework.lang.NonNull;
/**
@@ -19,13 +21,16 @@
public class SimpleVideoTagVO {
    @ApiModelProperty("标签id")
    @Field(type = FieldType.Keyword)
    private String id;
    /** 标签名称 */
    @ApiModelProperty("标签名称")
    @Field(type = FieldType.Text, searchAnalyzer = "ik_max_word")
    private String tagName;
    @ApiModelProperty(hidden = true)
    @Field(type = FieldType.Keyword)
    private String videoId;