| | |
| | | public class DappMemberEntity extends BaseEntity { |
| | | |
| | | private String address; |
| | | |
| | | //资产积分余额 |
| | | private BigDecimal balance; |
| | | |
| | | /** |
| | |
| | | private Integer withdrawAble; |
| | | |
| | | private String inviteId; |
| | | private String inviteRight; |
| | | private String inviteLeft; |
| | | |
| | | private String refererId; |
| | | |
| | |
| | | private String chainType; |
| | | |
| | | /** |
| | | * 是否节点 1-是 2-否 |
| | | * 推广标识 1-左 2-右 |
| | | */ |
| | | private Integer nodeType; |
| | | |
| | |
| | | * 账号类型 admin normal |
| | | */ |
| | | private String accountType; |
| | | |
| | | //小区业绩 |
| | | private BigDecimal usdtBalance; |
| | | //左边区域业绩 |
| | | private BigDecimal leftAchieve; |
| | | //右边区域业绩 |
| | | private BigDecimal rightAchieve; |
| | | |
| | | /** |
| | | * 激活状态 1-已激活 2-未激活 |
| | |
| | | |
| | | @TableField(exist = false) |
| | | private BigDecimal memberNodeSumPrice; |
| | | |
| | | @ApiModelProperty(value = "币余额") |
| | | @TableField(exist = false) |
| | | private BigDecimal coinAmount; |
| | | |
| | | @ApiModelProperty(value = "赠送积分余额") |
| | | @TableField(exist = false) |
| | | private BigDecimal scoreAmount; |
| | | |
| | | @ApiModelProperty(value = "我的共享业绩") |
| | | @TableField(exist = false) |
| | | private BigDecimal myShareAchieve; |
| | | |
| | | @ApiModelProperty(value = "我的团队业绩") |
| | | @TableField(exist = false) |
| | | private BigDecimal myTeamAchieve; |
| | | |
| | | @ApiModelProperty(value = "累计提现") |
| | | @TableField(exist = false) |
| | | private BigDecimal withdrawAmount; |
| | | |
| | | } |