xiaoyong931011
2022-03-01 ee64a79830f6bad4107301c31f1fed3d8ab190c4
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
42
43
44
45
46
47
48
package com.xcong.excoin.modules.coin.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.xcong.excoin.common.system.base.BaseEntity;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@TableName("zhiya_Team")
public class ZhiYaTeam extends BaseEntity {
    /**
     *
     */
    private static final long serialVersionUID = 1L;
 
    /**
     * 会员ID
     */
    private Long memberId;
 
    /**
     * 是否是代理 1:是   0:否
     */
    private Integer isAgent;
 
    /**
     * 上级
     */
    private String refererId;
 
    /**
     * 上级链
     */
    private String refererIds;
 
    /**
     * 团队委托总量(不包含自己质押的算力)
     */
    private BigDecimal zhiyaCnt;
 
    /**
     * 团队总收益(不包含自己质押的算力)
     */
    private BigDecimal rewardCnt;
 
 
}