You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
389 B
Java

package com.manage.util;
/**
* 常量
* @Author: ljx
* @Date: 2019/4/16 10:25
*/
public class Constant {
// 有效标志
public static final Integer EFFECTIVE_YES = 1;
public static final Integer EFFECTIVE_NO = 0;
// 未登录拦截
public static final String RELEASE_REQUEST = "releaseRequest";
public static final String CURRENT_USER = "CURRENT_USER";
}