xiaoyong931011
2020-05-31 67725023bcbcdf5a3539f4400927682522303ab7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package com.xcong.excoin.common.contants;
 
import java.math.BigDecimal;
 
/**
 * @author wzy
 * @date 2020-05-12
 **/
public class AppContants {
 
    /**
     * 系统用户
     */
    public static final String SYSTEM_USER = "system";
 
 
    /**
     * app用户登陆redis前缀
     */
    public static final String APP_LOGIN_PREFIX = "app_";
 
    /**
     * token头部
     */
    public static final String TOKEN_HEADER = "Authorization";
 
    /**
     * token start with
     */
    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";
 
}