Helius
2020-11-30 50d3d5e3e3282f757ea639f9ca1939d429c6fd5d
src/main/java/com/xcong/excoin/modules/member/entity/MemberEntity.java
@@ -46,6 +46,15 @@
    public static final Integer ACCOUNT_TYPE_EMAIL = 2;
    /**
     * 正常账号
     */
    public static final Integer ACCOUNT_TYPE_NORMAL = 1;
    /**
     * 测试账号
     */
    public static final Integer ACCOUNT_TYPE_TEST = 2;
    /**
     * 实名认证 审核通过
     */
    public static final Integer CERTIFY_STATUS_Y = 2;
@@ -85,6 +94,10 @@
     * 交易密码
     */
    private String tradePassword;
    /**
     * 钱包地址
     */
    private String address;
    /**
     * 交易密码时效性设置
@@ -140,9 +153,24 @@
     * 是否设置预估强平价系数 0-否1-是
     */
    private Integer isForce;
    /**
     *  shifou xianzhi
     */
    private Integer isTrader;
    /**
     * 滑点
     */
    private BigDecimal spread;
    /**
     * 平仓点数
     */
    private BigDecimal closingSpread;
    /**
     * 强平系数
     */
    private BigDecimal forceParam;
}