From 071433a3b29cc73bddd6d9ea5ac3bc4c8807948c Mon Sep 17 00:00:00 2001 From: zainali5120 <512061637@qq.com> Date: Wed, 14 Oct 2020 11:43:56 +0800 Subject: [PATCH] ROC交易所调试日志删除 --- src/main/java/com/xcong/excoin/modules/member/entity/MemberEntity.java | 33 ++++++++++++++++++++++++++++++--- 1 files changed, 30 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/member/entity/MemberEntity.java b/src/main/java/com/xcong/excoin/modules/member/entity/MemberEntity.java index 9489f9c..aaa7e5e 100644 --- a/src/main/java/com/xcong/excoin/modules/member/entity/MemberEntity.java +++ b/src/main/java/com/xcong/excoin/modules/member/entity/MemberEntity.java @@ -3,9 +3,7 @@ import com.baomidou.mybatisplus.annotation.TableName; import com.xcong.excoin.common.system.base.BaseEntity; import lombok.Data; -import org.web3j.abi.datatypes.Int; - -import java.io.Serializable; +import java.math.BigDecimal; /** * 会员信息实体 @@ -18,6 +16,11 @@ public class MemberEntity extends BaseEntity { /** + * + */ + private static final long serialVersionUID = 1L; + + /** * 账号状态 - 禁用 */ public static final Integer ACCOUNT_STATUS_DISABLED = 0; @@ -41,6 +44,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; /** * 实名认证 审核通过 @@ -137,4 +149,19 @@ * 是否设置预估强平价系数 0-否1-是 */ private Integer isForce; + + /** + * 滑点 + */ + private BigDecimal spread; + + /** + * 平仓点数 + */ + private BigDecimal closingSpread; + + /** + * 强平系数 + */ + private BigDecimal forceParam; } -- Gitblit v1.9.1