12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- 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,
- }
- }
|