Constant.java 614 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
package com.govmade.common.utils;

/**
 * 常量类
 * 
 * @author Fred
 * @email fangtaosh@qq.com
 * @date 2018年8月3日
 */
public class Constant {
Fred's avatar
Fred committed
11

12 13
	/** 超级管理员ID */
	public static final int SUPER_ADMIN = 1;
Fred's avatar
Fred committed
14 15 16
	
	/** 重置默认密码 */
	public static final String DEFAULT_PASSWORD = "abc123456";
17

Fred's avatar
Fred committed
18 19
	/** 数据状态 */
	public static final int STATE_DELETE = 0;
20

Fred's avatar
Fred committed
21 22 23
	public static final int STATE_NORMAL = 1;
	
	public static final int STATE_LOCK = 2;
Fred's avatar
Fred committed
24

Fred's avatar
Fred committed
25 26
	/** 菜单类型 */
	public static final int MENU_CATALOG = 1;
Fred's avatar
Fred committed
27

Fred's avatar
Fred committed
28
	public static final int MENU_MENU = 2;
Fred's avatar
Fred committed
29

Fred's avatar
Fred committed
30
	public static final int MENU_BUTTON = 3;
Fred's avatar
Fred committed
31

32
}