xiaoyong931011
2021-03-04 c0fac904e85b0b0131cde4c6b7f1e8de9f095089
src/main/java/com/xcong/excoin/modules/member/entity/MemberEntity.java
@@ -74,6 +74,15 @@
    public static final int IS_PROFIT_Y = 1;
    public static final int IS_PROFIT_N = 0;
    public static final Integer IS_TRADER_Y = 1;
    public static final Integer IS_TRADER_N = 2;
    /**
     * 1是2否
     */
    private Integer isTrader;
    /**
     * 手机号(包含国际手机号)
@@ -108,7 +117,7 @@
    /**
     * 账号状态 0-禁用 1-启用
     */
    private int accountStatus;
    private Integer accountStatus;
    /**
     * 上级推荐人id
@@ -164,4 +173,14 @@
     * 强平系数
     */
    private BigDecimal forceParam;
    /**
     * 合约仓位类型
     */
    private Integer contractPositionType;
    /**
     * 指纹解锁功能  1:是   0:否
     */
    private Integer fingerprintState;
}