mirror of
https://github.com/201206030/novel-plus.git
synced 2025-07-04 08:26:37 +00:00
上传后台管理系统代码
This commit is contained in:
@ -0,0 +1,24 @@
|
||||
package com.java2nb.common.config;
|
||||
|
||||
public class Constant {
|
||||
//演示系统账户
|
||||
public static String DEMO_ACCOUNT = "test";
|
||||
//自动去除表前缀
|
||||
public static String AUTO_REOMVE_PRE = "true";
|
||||
//停止计划任务
|
||||
public static String STATUS_RUNNING_STOP = "stop";
|
||||
//开启计划任务
|
||||
public static String STATUS_RUNNING_START = "start";
|
||||
//通知公告阅读状态-未读
|
||||
public static String OA_NOTIFY_READ_NO = "0";
|
||||
//通知公告阅读状态-已读
|
||||
public static int OA_NOTIFY_READ_YES = 1;
|
||||
//部门根节点id
|
||||
public static Long DEPT_ROOT_ID = 0l;
|
||||
//缓存方式
|
||||
public static String CACHE_TYPE_REDIS ="redis";
|
||||
|
||||
public static String LOG_ERROR = "error";
|
||||
|
||||
|
||||
}
|
Reference in New Issue
Block a user