xiaoyong931011
2021-05-17 7572b8dbd4c41ca9b6437a032da2aa1a0fdd5444
src/main/java/com/xcong/excoin/modules/member/entity/MemberEntity.java
@@ -130,6 +130,10 @@
     */
    private Integer agentLevel;
    @TableField(exist = false)
    private String agentName;
    /**
     * 实名认证状态 0-审核未通过 1-审核通过 2-等待审核
     */
@@ -149,6 +153,8 @@
     * 是否是交易员1是2否
     */
    private Integer isTrader;
    public static final int ISTRADER_Y = 1;
    public static final int ISTRADER_N = 2;
    
    /**
     * 是否可平仓   1:否   0:是
@@ -192,4 +198,29 @@
    */
   @TableField(exist = false)
    private String isTest;
    /**
     * 滑点
     */
    private BigDecimal spread;
    /**
     * 平仓点数
     */
    private BigDecimal closingSpread;
    /**
     * 强平系数
     */
    private BigDecimal forceParam;
    /**
     * 合约仓位类型
     */
    private Integer contractPositionType;
    /**
     * 指纹解锁功能  1:是   0:否
     */
    private Integer fingerprintState;
}