潘志宝
2024-08-15 81c220fd9e0ea6c8ee84c9b766885b0322b4038c
提交 | 用户 | 时间
e7c126 1 package com.iailab.module.system.dal.dataobject.social;
H 2
3 import com.iailab.framework.common.enums.UserTypeEnum;
4 import com.iailab.framework.mybatis.core.dataobject.BaseDO;
5 import com.baomidou.mybatisplus.annotation.KeySequence;
6 import com.baomidou.mybatisplus.annotation.TableId;
7 import com.baomidou.mybatisplus.annotation.TableName;
8 import lombok.*;
9
10 /**
11  * 社交用户的绑定
12  * 即 {@link SocialUserDO} 与 UserDO 的关联表
13  *
14  * @author iailab
15  */
16 @TableName(value = "system_social_user_bind", autoResultMap = true)
17 @KeySequence("system_social_user_bind_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。
18 @Data
19 @EqualsAndHashCode(callSuper = true)
20 @Builder
21 @NoArgsConstructor
22 @AllArgsConstructor
23 public class SocialUserBindDO extends BaseDO {
24
25     /**
26      * 编号
27      */
28     @TableId
29     private Long id;
30     /**
31      * 关联的用户编号
32      *
33      * 关联 UserDO 的编号
34      */
35     private Long userId;
36     /**
37      * 用户类型
38      *
39      * 枚举 {@link UserTypeEnum}
40      */
41     private Integer userType;
42
43     /**
44      * 社交平台的用户编号
45      *
46      * 关联 {@link SocialUserDO#getId()}
47      */
48     private Long socialUserId;
49     /**
50      * 社交平台的类型
51      *
52      * 冗余 {@link SocialUserDO#getType()}
53      */
54     private Integer socialType;
55
56 }