管道基础大数据平台系统开发-【后端】-Server
1
sws
2022-11-26 ab849f796bdc17236a95ea5fe5c166fb8f24a75c
src/main/java/com/lf/server/entity/all/SettingData.java
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,47 @@
package com.lf.server.entity.all;
/**
 * è®¾ç½®æ•°æ®ç±»
 * @author WWW
 */
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 = 2000;
    /**
     * Cookie有效期:s
     */
    public static int COOKIE_MAX_AGE = 4 * 60 * 60;
    /**
     * é™„件大小:B
     */
    public static long MAX_FILE_SIZE = 50 * 1024 * 1024;
}