37 lines
697 B
C#
37 lines
697 B
C#
namespace ZhiZhun.AuthenticationCenter.User
|
|
{
|
|
public enum UserType
|
|
{
|
|
|
|
//PM
|
|
ProjectManager = 1,
|
|
|
|
//CRC
|
|
ClinicalResearchCoordinator = 2,
|
|
|
|
//IQA
|
|
IQC = 3,
|
|
|
|
|
|
////简历管理人员
|
|
//ResumeManager=4,
|
|
////简历运维人员
|
|
//ReviewerCoordinator = 5,
|
|
|
|
ReviewerCoordinator = 4,
|
|
|
|
// 大屏展示
|
|
Dashboard = 6,
|
|
|
|
// 超级管理员用户类型,用于取代 SuperAdmin字段 数据库不内置这个用户类型和角色的配置,因为只允许有一个
|
|
SuperAdmin = 8,
|
|
|
|
//医生用户类型暂不处理
|
|
|
|
ShareImage = 9,
|
|
|
|
Undefined = 0
|
|
|
|
|
|
}
|
|
} |