xiangpei
2025-06-12 890703c95f05eb7507441d12eee27fd21197e8c0
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package cn.lili.modules.lmk.domain.entity;
 
import cn.lili.mybatis.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.time.LocalDateTime;
import java.util.Date;
 
import lombok.Data;
 
/**
 * 视频内容
 *
 * @author xp
 * @since 2025-05-16
 */
@Data
@TableName("lmk_video")
public class Video extends BaseEntity {
 
    private static final long serialVersionUID = 1L;
 
    @TableField("author_id")
    /** 作者id */
    private String authorId;
 
    @TableField("cover_url")
    /** 图片封面 */
    private String coverUrl;
 
    @TableField("video_file_key")
    /** 视频地址 */
    private String videoFileKey;
 
    @TableField("video_fit")
    /** 视频填充模式 */
    private String videoFit;
 
    @TableField("video_duration")
    /** 视频长度(秒) */
    private Long videoDuration;
 
    @TableField("title")
    /** 视频标题 */
    private String title;
 
    @TableField("video_content_type")
    /** 视频内容类型:视频、图片 */
    private String videoContentType;
 
    @TableField("video_type")
    /** 视频类型:视频、大健康、神厨 */
    private String videoType;
 
    @TableField("video_imgs")
    /** 图片地址(json数组),对应video_type = 图片 */
    private String videoImgs;
 
    @TableField("goods_view_num")
    /** 商品查看次数 */
    private Long goodsViewNum;
 
    @TableField("goods_order_num")
    /** 商品下单次数 */
    private Long goodsOrderNum;
 
    @TableField("recommend")
    /** 是否推荐 */
    private Boolean recommend;
 
    @TableField("status")
    /** 状态 */
    private String status;
 
    @TableField("play_num")
    /** 播放量 */
    private Long playNum;
 
    @TableField("collect_num")
    /** 收藏数 */
    private Long collectNum;
 
    @TableField("comment_num")
    /** 评论数 */
    private Long commentNum;
 
    @TableField("weight")
    /** 权重 */
    private Double weight;
 
    @TableField("audit_pass_time")
    /** 审核通过时间 */
    private Date auditPassTime;
 
 
}