Administrator
2025-08-04 a34b9a6418a8874dc0851cb4e19d189339dd5133
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
}