|
package com.bwie.common.constants;
|
|
|
|
/**
|
|
* @ClassName:
|
|
* @Description:
|
|
* @Author: zhuwenqiang
|
|
* @Date: 2023/10/18
|
|
*/
|
|
public class RoleConstants {
|
|
|
|
/**
|
|
* 管理员
|
|
*/
|
|
public static final int ADMIN = 1;
|
|
|
|
/**
|
|
* 普通用户
|
|
*/
|
|
public static final int ORDINARY_USERS = 2;
|
|
|
|
}
|