88e030b7
王彪总
init project
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
package com.java110.utils.constant;
/**
* 用户级别,如 普通用户管理员员工等
* @author wux
* @create 2018-12-08 下午2:21
* @desc 用户级别常量类
**/
public class UserLevelConstant {
/**
* 管理员
*/
public static final String USER_LEVEL_ADMIN = "00";
/**
* 普通员工
*/
public static final String USER_LEVEL_STAFF = "01";
/**
* 普通用户
*/
public static final String USER_LEVEL_ORDINARY = "02";
/**
* 普通用户
*/
public static final String USER_LEVEL_MALL = "03";
/**
* 临时人员
*/
public static final String USER_LEVEL_TEMP = "05";
}
|