| 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 String totalRecharge;  | 
|     /**  | 
|      * 总提现  | 
|      */  | 
|     @TableField(exist = false)  | 
|     private String totalWithdrawal;  | 
|     /**  | 
|      * 总业绩  | 
|      */  | 
|     @TableField(exist = false)  | 
|     private String totalPerformance;  | 
|     /**  | 
|      * 团队  | 
|      */  | 
|     @TableField(exist = false)  | 
|     private String team;  | 
|   | 
| }  |