xiaoyong931011
2023-08-01 8e6989a4472063a2edb5e63c16610ccf8450a562
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
27
28
29
package cc.mrbird.febs.dapp.entity;
 
import cc.mrbird.febs.common.entity.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
@Data
@TableName(value = "matrix_tree_node")
public class MatrixTreeNode extends BaseEntity {
 
    private Long treeNode;
 
    private Long parentNode;
 
    private Integer deep;
 
    @TableField(exist = false)
    private String phone;
 
    @TableField(exist = false)
    private String name;
 
    @TableField(exist = false)
    private String inviteId;
 
    @TableField(exist = false)
    private String referrerId;
}