From d89ecce959bc93db298a29617b3d7337b53ecea8 Mon Sep 17 00:00:00 2001
From: gao <gaoleox@163>
Date: Wed, 27 May 2020 17:44:44 +0800
Subject: [PATCH] 撤单

---
 src/main/java/com/xcong/excoin/modules/member/entity/MemberEntity.java |   28 ++++++++++++++++++++++++++++
 1 files changed, 28 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..fa286bc 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
@@ -27,6 +27,34 @@
     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 = 1;
+    /**
+     * 实名认证 审核不通过
+     */
+    public static final Integer CERTIFY_STATUS_N = 0;
+    /**
+     * 实名认证 审核中
+     */
+    public static final Integer CERTIFY_STATUS_ING = 2;
+
+    /**
      * 手机号(包含国际手机号)
      */
     private String phone;

--
Gitblit v1.9.1