From 705635efdd5000152d9c4423ae980ccdc34632a8 Mon Sep 17 00:00:00 2001
From: zainali5120 <512061637@qq.com>
Date: Tue, 23 Feb 2021 20:42:19 +0800
Subject: [PATCH] 波长jar包删除日志配置文件

---
 src/main/java/com/xcong/excoin/common/contants/AppContants.java |   66 +++++++++++++++++++++++++++++++++
 1 files changed, 66 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/xcong/excoin/common/contants/AppContants.java b/src/main/java/com/xcong/excoin/common/contants/AppContants.java
index 4513ee1..8e98f35 100644
--- a/src/main/java/com/xcong/excoin/common/contants/AppContants.java
+++ b/src/main/java/com/xcong/excoin/common/contants/AppContants.java
@@ -1,5 +1,7 @@
 package com.xcong.excoin.common.contants;
 
+import java.math.BigDecimal;
+
 /**
  * @author wzy
  * @date 2020-05-12
@@ -7,9 +9,17 @@
 public class AppContants {
 
     /**
+     * 系统用户
+     */
+    public static final String SYSTEM_USER = "system";
+
+
+    /**
      * app用户登陆redis前缀
      */
     public static final String APP_LOGIN_PREFIX = "app_";
+
+    public static final String PC_LOGIN_PREFIX = "pc_";
 
     /**
      * token头部
@@ -21,4 +31,60 @@
      */
     public static final String TOKEN_START_WITH = "Bearer ";
 
+    /**
+     * 账号类型-手机号
+     */
+    public static final String ACCOUNT_TYPE_MOBILE = "1";
+
+    /**
+     * 账号类型-邮箱
+     */
+    public static final String ACCOUNT_TYPE_EMAIL = "2";
+
+    /**
+     * 系统推荐人id
+     */
+    public static final String SYSTEM_REFERER = "rxadr3";
+
+    /**
+     * 初始化金额
+     */
+    public static final BigDecimal INIT_MONEY = BigDecimal.ZERO;
+
+
+    public static final Integer INIT_SIMULATE_MONEY = 5000;
+
+    /**
+     * homeSymbols 接口状态值 币币
+     */
+    public static final int HOME_SYMBOLS_COIN = 1;
+
+    /**
+     * homeSymbols 接口状态值 合约
+     */
+    public static final int HOME_SYMBOLS_CONTRACT = 2;
+
+    /**
+     * 验证码前缀 手机
+     */
+    public static final String VERIFY_CODE_PREFIX = "CODE_SMS_";
+
+    /**
+     * 图片后缀
+     */
+    public static final String UPLOAD_IMAGE_SUFFIX = ".jpg";
+
+    public static final String TIME_OUT = "time_out";
+
+    public static final String CLOSING_ORDER_PREFIX = "closing_cnt_";
+
+    /**
+     * 任务进行中前缀
+     */
+    public static final String RABBIT_TYPE = "rabbit_type_";
+
+    public static final String MEMBER_TYPE = "member_type_";
+
+    public static final String WHOLE_BOMB_PREFIX = "whole_bomb_";
+
 }

--
Gitblit v1.9.1