xiaoyong931011
2021-03-23 325508eb8d311e07c68cb6c352ffe519459f9edd
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
package com.xcong.excoin.modules.member.entity;
 
import java.math.BigDecimal;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.xcong.excoin.common.entity.BaseEntity;
 
import lombok.Data;
 
@Data
@TableName("agent_friend_relation")
public class AgentFriendRelationEntity extends BaseEntity {/**
     * 
     */
    private static final long serialVersionUID = 1L;
    
    /**
     * 后台用户ID
     */
    private Long userId;
    /**
     * 会员ID
     */
    private Long memberId;
    /**
     * 会员邀请码
     */
    private String inviteId;
    /**
     * 上级会员ID
     */
    private Long refererMemberId;
    /**
     * 上级邀请码
     */
    private String refererId;
    /**
     * 上级链
     */
    private String refererIds;
    /**
     * 返佣比例
     */
    private BigDecimal returnRatio;
    /**
     * 代理等级
     */
    private int levelId;
    /**
     * 手续费是否设置自己 1是2否
     */
    private int feeIsSelf;
    
    /**
     * 查询条件:第一查询条件
     */
    @TableField(exist = false)
    private String account;
    /**
     * 手机号(包含国际手机号)
     */
    @TableField(exist = false)
    private String phone;
    /**
     * 邮箱
     */
    @TableField(exist = false)
    private String email;
    /**
     * 推广人数
     */
    @TableField(exist = false)
    private int promotionNumber;
    @TableField(exist = false)
    private int accountType;
    /**
     * 总充值
     */
    @TableField(exist = false)
    private String totalRecharge;
    /**
     * 总提现
     */
    @TableField(exist = false)
    private String totalWithdrawal;
    /**
     * 总业绩
     */
    @TableField(exist = false)
    private String totalPerformance;
    /**
     * 团队
     */
    @TableField(exist = false)
    private String team;
    @TableField(exist = false)
    private String realName;
 
}