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
| 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";
| }
|
|