using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Flyinsono.DBCopy.Tool.Entities { internal class UserRoleTypes { public string Id { get; private set; } public DateTime CreateTime { get; private set; } public DateTime UpdateTime { get; set; } public bool IsDeleted { get; set; } /// /// 远程考核用户角色 /// public RoleType RoleType { get; set; } /// /// 预约会诊用户角色 /// public ConsultationRoleType ConsultationRoleType { get; set; } /// ///远程培训用户角色 /// public TrainingRoleType TrainingRoleType { get; set; } /// /// 评分能力 /// public double EvaluateAbility { get; set; } } /// /// 远程考核用户角色 /// public enum RoleType { Student, Assistant, Teacher, } /// /// 预约会诊用户角色 /// public enum TrainingRoleType { NormalUser, CertifiedTeacher, CourseRecorder, VideoAdmin } /// /// 会议角色 /// public enum MeetingRoleType { Initiator, Recipient, Expert,//专家 Administrator,//系统管理员 } }