zhanghua
2025-06-11 2ca169c85f61256fb5185c078dba1bfef2be5066
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
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 lombok.Data;
 
/**
 * 我的收藏
 *
 * @author xp
 * @since 2025-05-22
 */
@Data
@TableName("lmk_my_collect")
public class MyCollect extends BaseEntity {
 
    private static final long serialVersionUID = 1L;
 
    @TableField("user_id")
    /** 用户id */
    private String userId;
 
    @TableField("collect_type")
    /** 收藏类型 */
    private String collectType;
 
    @TableField("ref_id")
    /** 收藏对应的id,视频id、商品id,根据收藏类型定 */
    private String refId;
 
 
}