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.
22 lines
427 B
22 lines
427 B
/** |
|
* @program: kicc-ui |
|
* @description: 用户权限枚举 |
|
* @author: entfrm开发团队-王翔 |
|
* @create: 2023/4/21 |
|
*/ |
|
|
|
/** 系统用户类型 */ |
|
export enum SystemUserType { |
|
// 系统管理员 |
|
ADMIN = '0', |
|
// 普通用户 |
|
NORMAL_USER = '1', |
|
// 企业用户 |
|
ENTERPRISE_USER = '2', |
|
// 收样员 |
|
SAMPLE_COLLECTOR = '3', |
|
// 客服 |
|
CUSTOMER_SERVICE = '4', |
|
// 企业内部用户 |
|
INTERNAL_USER = '5', |
|
}
|
|
|