From 50d3d5e3e3282f757ea639f9ca1939d429c6fd5d Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Mon, 30 Nov 2020 11:02:07 +0800 Subject: [PATCH] modify --- src/main/java/com/xcong/excoin/modules/member/entity/MemberEntity.java | 53 +++++++++++++++++++++++++++++++++++++++++++++++++---- 1 files changed, 49 insertions(+), 4 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 fa286bc..1609e0b 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,8 +3,7 @@ import com.baomidou.mybatisplus.annotation.TableName; import com.xcong.excoin.common.system.base.BaseEntity; import lombok.Data; - -import java.io.Serializable; +import java.math.BigDecimal; /** * 会员信息实体 @@ -17,6 +16,11 @@ public class MemberEntity extends BaseEntity { /** + * + */ + private static final long serialVersionUID = 1L; + + /** * 账号状态 - 禁用 */ public static final Integer ACCOUNT_STATUS_DISABLED = 0; @@ -42,9 +46,18 @@ 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 = 1; + public static final Integer CERTIFY_STATUS_Y = 2; /** * 实名认证 审核不通过 */ @@ -52,7 +65,15 @@ /** * 实名认证 审核中 */ - public static final Integer CERTIFY_STATUS_ING = 2; + public static final Integer CERTIFY_STATUS_ING = 1; + /** + * 实名认证 未提交 + */ + public static final Integer CERTIFY_STATUS_UN_SUBMIT = 3; + + public static final int IS_PROFIT_Y = 1; + + public static final int IS_PROFIT_N = 0; /** * 手机号(包含国际手机号) @@ -73,6 +94,10 @@ * 交易密码 */ private String tradePassword; + /** + * 钱包地址 + */ + private String address; /** * 交易密码时效性设置 @@ -128,4 +153,24 @@ * 是否设置预估强平价系数 0-否1-是 */ private Integer isForce; + + /** + * shifou xianzhi + */ + private Integer isTrader; + + /** + * 滑点 + */ + private BigDecimal spread; + + /** + * 平仓点数 + */ + private BigDecimal closingSpread; + + /** + * 强平系数 + */ + private BigDecimal forceParam; } -- Gitblit v1.9.1