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
| package cc.mrbird.febs.dapp.entity;
|
| import com.baomidou.mybatisplus.annotation.IdType;
| import com.baomidou.mybatisplus.annotation.TableId;
| import com.baomidou.mybatisplus.annotation.TableName;
| import lombok.Data;
|
| /**
| * @author wzy
| * @date 2022-03-24
| **/
| @Data
| @TableName("dapp_user_member_relate")
| public class DappUserMemberRelateEntity {
|
| @TableId(value = "id",type = IdType.AUTO)
| private Long id;
|
| private Long userId;
|
| private Long memberId;
|
| private Long createUser;
|
| private String inviteId;
| }
|
|