| | |
| | | package com.xcong.excoin.modules.documentary.entity;
|
| | |
|
| | | import java.math.BigDecimal;
|
| | |
|
| | | import com.baomidou.mybatisplus.annotation.TableField;
|
| | | import com.baomidou.mybatisplus.annotation.TableName;
|
| | | import com.xcong.excoin.common.entity.BaseEntity;
|
| | |
|
| | |
| | | * 交易笔数
|
| | | */
|
| | | private BigDecimal totalOrderCnt;
|
| | |
|
| | | @TableField(exist = false)
|
| | | private String account;
|
| | |
|
| | | @TableField(exist = false)
|
| | | private String realName;
|
| | | /**
|
| | | * 手机号(包含国际手机号)
|
| | | */
|
| | | @TableField(exist = false)
|
| | | private String phone;
|
| | | /**
|
| | | * 邮箱
|
| | | */
|
| | | @TableField(exist = false)
|
| | | private String email;
|
| | | /**
|
| | | * 邀请码
|
| | | */
|
| | | @TableField(exist = false)
|
| | | private String inviteId;
|
| | | |
| | | /**
|
| | | * 账号类型
|
| | | */
|
| | | @TableField(exist = false)
|
| | | private int accountType;
|
| | | |
| | | /**
|
| | | * 利润率
|
| | | */
|
| | | @TableField(exist = false)
|
| | | private BigDecimal profitRatio;
|
| | | /**
|
| | | * 总返利
|
| | | */
|
| | | @TableField(exist = false)
|
| | | private BigDecimal profitRatioTotal;
|
| | |
|
| | |
|
| | | }
|