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
| package com.lf.server.entity.all;
|
| /**
| * 设置数据类
| * @author WWW
| */
| public class SettingData {
| /**
| * 排除路径:"/druid/",
| */
| public static String[] EXCLUDE_PATH = new String[]{"/swagger", "/sign/", "/proxy"};
|
| /**
| * 自动登出时间
| */
| public static Integer AUTO_LOGOUT = 15;
|
| /**
| * 令牌有效期
| */
| public static Integer TOKEN_EXPIRE = 240;
|
| /**
| * 缓存有效期
| */
| public static Integer CACHE_EXPIRE = 240;
|
| /**
| * 附件大小
| */
| public static Integer MAX_FILE_SIZE = 20 * 1024 * 1024;
| }
|
|