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

34 lines
730 B

package com.zhonghe.active4j.common.constant;
/**
* 全局常量类
* @author teli_
*
*/
public class GlobalConstant {
/**
* 验证码存放Key
*/
public static final String SESSION_KEY_OF_RAND_CODE = "randCode"; // todo 要统一常量
/**
* layui表格默认排序赋值的字段
*/
public static final String Order_Field = "field";//排序字段
public static final String Order_Type = "order";//排序类型
/**
* 没有权限进行此操作
*/
public static final String Err_Msg_No_Auth = "没有权限进行此操作";
public static final String Err_Msg_All = "系统错误,请联系管理员";
/**
* 默认创建人
*/
public static final String Default_Create_Name = "system";
}