From e7ce8d314ebd415aa8bf8d93f73aaac035f9858d Mon Sep 17 00:00:00 2001
From: gao <gaoleox@163>
Date: Tue, 30 Jun 2020 15:42:32 +0800
Subject: [PATCH] 快捷卖出接口

---
 src/main/java/com/xcong/excoin/modules/member/entity/MemberEntity.java |   37 +++++++++++++++++++++++++++++++++++++
 1 files changed, 37 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 66c6c9a..9489f9c 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,6 +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;
 
@@ -27,6 +28,42 @@
     public static final Integer ACCOUNT_STATUS_ENABLE = 1;
 
     /**
+     * 账号代理级别
+     */
+    public static final Integer ACCOUNT_AGENT_LEVEL = 6;
+
+    /**
+     * 账号类型 手机
+     */
+    public static final Integer ACCOUNT_TYPE_PHONE = 1;
+
+    /**
+     * 账号类型 邮箱
+     */
+    public static final Integer ACCOUNT_TYPE_EMAIL = 2;
+
+    /**
+     * 实名认证 审核通过
+     */
+    public static final Integer CERTIFY_STATUS_Y = 2;
+    /**
+     * 实名认证 审核不通过
+     */
+    public static final Integer CERTIFY_STATUS_N = 0;
+    /**
+     * 实名认证 审核中
+     */
+    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;
+
+    /**
      * 手机号(包含国际手机号)
      */
     private String phone;

--
Gitblit v1.9.1