zxl
4 天以前 8063ee7eee51bfe25a09428e6efc60f828b270c6
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
package cn.lili.modules.lmk.domain.vo;
 
import cn.lili.base.AbsVo;
import cn.lili.modules.lmk.domain.entity.KitchenVideoTypeRef;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.beans.BeanUtils;
import org.springframework.lang.NonNull;
 
/**
 * 厨神视频标签关系表展示
 *
 * @author wp
 * @since 2025-06-13
 */
@Data
@ApiModel(value = "厨神视频标签关系表响应数据", description = "厨神视频标签关系表响应数据")
public class KitchenVideoTypeVO extends AbsVo {
 
    /** 视频id */
    @ApiModelProperty("视频id")
    private String videoId;
 
    /** 分类id */
    @ApiModelProperty("分类id")
    private String id;
 
    /** 分类名称 */
    @ApiModelProperty("分类名称")
    private String typeName;
 
 
}