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;
|
|
|
}
|