From 16a21995026ebf2b5853c5dee4b5a30a26e13abd Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Wed, 29 Jul 2020 11:26:55 +0800 Subject: [PATCH] 20200729 代码提交 --- src/main/java/com/xcong/excoin/modules/member/entity/MemberEntity.java | 23 +++++++++++++++++++++++ 1 files changed, 23 insertions(+), 0 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 ebbd0e5..31126d9 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 @@ -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; @@ -65,6 +74,15 @@ public static final int IS_PROFIT_Y = 1; public static final int IS_PROFIT_N = 0; + + public static final Integer IS_TRADER_Y = 1; + + public static final Integer IS_TRADER_N = 2; + + /** + * 1是2否 + */ + private Integer isTrader; /** * 手机号(包含国际手机号) @@ -145,4 +163,9 @@ * 滑点 */ private BigDecimal spread; + + /** + * 平仓点数 + */ + private BigDecimal closingSpread; } -- Gitblit v1.9.1