xiaoyong931011
2021-03-26 48c3fa5761f4eb5f7e134cce28a6d887156c34d1
src/main/java/com/xcong/excoin/modules/member/entity/MemberEntity.java
@@ -149,6 +149,8 @@
     * 是否是交易员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;
}