xiaoyong931011
2021-03-26 48c3fa5761f4eb5f7e134cce28a6d887156c34d1
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";
   /**
     * 账号状态 - 禁用
     */
@@ -139,13 +144,31 @@
     * 是否设置盈亏难度系数 0-否1-是
     */
    private Integer isProfit;
    /**
     * 是否是交易员1是2否
     */
    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-是
     */
    private Integer isForce;
    @TableField(exist = false)
    private String account;
    @TableField(exist = false)
    private String accounts;
    @TableField(exist = false)
    private String firstName;
    
@@ -165,4 +188,35 @@
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @TableField(exist = false)
    private Date endTime;
   /**
    * 查询条件:账号类型
    */
   @TableField(exist = false)
    private String isTest;
    /**
     * 滑点
     */
    private BigDecimal spread;
    /**
     * 平仓点数
     */
    private BigDecimal closingSpread;
    /**
     * 强平系数
     */
    private BigDecimal forceParam;
    /**
     * 合约仓位类型
     */
    private Integer contractPositionType;
    /**
     * 指纹解锁功能  1:是   0:否
     */
    private Integer fingerprintState;
}