月球大数据地理空间分析展示平台-【后端】-月球后台服务
1
13693261870
2024-11-11 fee67ca8a0760315047a52fc4101a8f4f80b7a7f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.moon.server.entity.all;
 
@SuppressWarnings("ALL")
public class SettingData {
    public static int PWD_ERR_COUNT = 5;
 
    public static int PWD_ERR_TIME = 5;
 
    public static int AUTO_LOGOUT = 15;
 
    public static int TOKEN_EXPIRE = 240;
 
    public static int CACHE_EXPIRE = 240;
 
    public static int MAX_FILES = 2001;
 
    public static int COOKIE_MAX_AGE = 4 * 60 * 60;
 
    public static long MAX_FILE_SIZE = 50 * 1024 * 1024;
 
    public static int MAX_USER_LOGIN = 1000;
 
    public static int MAX_SERVERS = 100000;
}