xiaoyong931011
2021-07-05 cf200a1f92c01ba22c326c49391f748ffb006910
src/main/java/com/xcong/excoin/modules/member/entity/MemberEntity.java
@@ -24,6 +24,11 @@
    */
   private static final long serialVersionUID = 1L;
    /**
     * 系统推荐人id
     */
    public static final String SYSTEM_REFERER = "rxadr3";
   /**
     * 账号状态 - 禁用
     */
@@ -141,10 +146,18 @@
    private Integer isProfit;
    
    /**
     * 是否是交易员1是2否
     * 是否是商户1是2否
     */
    @TableField(exist = false)
    private Integer isTrader;
    public static final int ISTRADER_Y = 1;
    public static final int ISTRADER_N = 2;
    /**
     * 是否可平仓   1:否   0:是
     */
    private Integer pcState;
    public static final int PCSTATE_Y = 0;
    public static final int PCSTATE_N = 1;
    /**
     * 是否设置预估强平价系数 0-否1-是
@@ -153,6 +166,8 @@
    
    @TableField(exist = false)
    private String account;
    @TableField(exist = false)
    private String accounts;
    
    @TableField(exist = false)
    private String firstName;
@@ -179,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;
}