package cc.mrbird.febs.mall.entity;
|
|
import cc.mrbird.febs.common.entity.BaseEntity;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
@Data
|
@TableName("clothes_social_follow")
|
public class ClothesSocialFollow extends BaseEntity {
|
/**
|
*
|
`member_id` bigint(20) DEFAULT NULL,
|
`source_type` int(11) DEFAULT NULL COMMENT '来源类型 1-社区 2-评论',
|
`source_id` bigint(20) DEFAULT NULL COMMENT '来源ID',
|
`source_option_id` bigint(20) DEFAULT NULL COMMENT '来源选项ID',
|
`type` int(11) DEFAULT NULL COMMENT '操作类型 1-关注 2-点赞',
|
*/
|
private Long memberId;
|
private Integer sourceType;
|
private Long sourceId;
|
private Long sourceOptionId;
|
private Integer type;
|
}
|