- ///角色类型
- class RoleType {
- static String generalUser = "Role_GeneralUser"; //普通用户
- static String internshipDoctor = "Role_InternshipDoctor"; //实习医生
- static String expertAssistant = "Role_ExpertAssistant"; //专家助理
- static String certifiedPhysician = "Role_CertifiedPhysician"; //认证医师
- static String certifiedExpert = "Role_CertifiedExpert"; //认证专家
- }
|