common_business.dart 400 B

12345678
  1. ///角色类型
  2. class RoleType {
  3. static String generalUser = "Role_GeneralUser"; //普通用户
  4. static String internshipDoctor = "Role_InternshipDoctor"; //实习医生
  5. static String expertAssistant = "Role_ExpertAssistant"; //专家助理
  6. static String certifiedPhysician = "Role_CertifiedPhysician"; //认证医师
  7. static String certifiedExpert = "Role_CertifiedExpert"; //认证专家
  8. }