xiaoyong931011
2021-07-05 cf200a1f92c01ba22c326c49391f748ffb006910
src/main/java/com/xcong/excoin/modules/member/entity/MemberEntity.java
@@ -146,9 +146,11 @@
    private Integer isProfit;
    
    /**
     * 是否是交易员1是2否
     * 是否是商户1是2否
     */
    private Integer isTrader;
    public static final int ISTRADER_Y = 1;
    public static final int ISTRADER_N = 2;
    
    /**
     * 是否可平仓   1:否   0:是
@@ -192,4 +194,29 @@
    */
   @TableField(exist = false)
    private String isTest;
    /**
     * 滑点
     */
    private BigDecimal spread;
    /**
     * 平仓点数
     */
    private BigDecimal closingSpread;
    /**
     * 强平系数
     */
    private BigDecimal forceParam;
    /**
     * 合约仓位类型
     */
    private Integer contractPositionType;
    /**
     * 指纹解锁功能  1:是   0:否
     */
    private Integer fingerprintState;
}