xiaoyong931011
2023-08-21 92e66aaa7c3643e2497dfef0d031a9eb8e76e184
src/main/java/cc/mrbird/febs/dapp/entity/DappMemberEntity.java
@@ -20,7 +20,7 @@
public class DappMemberEntity extends BaseEntity {
    private String address;
    //资产积分余额
    private BigDecimal balance;
    /**
@@ -56,7 +56,7 @@
    private String chainType;
    /**
     * 是否是超级节点 1-是 2-否
     * 推广标识 1-左 2-右
     */
    private Integer nodeType;
@@ -64,8 +64,12 @@
     * 账号类型 admin normal
     */
    private String accountType;
    //小区业绩
    private BigDecimal usdtBalance;
    //左边区域业绩
    private BigDecimal leftAchieve;
    //右边区域业绩
    private BigDecimal rightAchieve;
    /**
     * 激活状态 1-已激活 2-未激活
@@ -119,4 +123,17 @@
    @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;
}