| | |
| | | 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; |
| | | |
| | | /** |
| | |
| | | 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; |
| | | |
| | | |