KKSU
2024-07-09 ef76b5409cd10494bb1bb686b00c297f3ed023bc
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
30
31
32
33
34
35
36
37
38
39
40
41
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;
 
/**
 * @author wzy
 * @date 2022-08-25
 **/
@Data
@TableName("dapp_achieve_tree")
public class DappAchieveTreeEntity extends BaseEntity {
 
    private Long midNode;
 
    private Long leftNode;
 
    private Long rightNode;
 
    private int batchNo;
 
    private int validState;
 
    @TableField(exist = false)
    private String address;
 
    @TableField(exist = false)
    private String inviteId;
 
    @TableField(exist = false)
    private String refererId;
 
    @TableField(exist = false)
    private Long memberId;
 
    @TableField(exist = false)
    private Long fundId;
 
}