123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- namespace EMISOnline.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class V_StudentEducationMissionClass
- {
-
-
-
- public System.Guid EducationMissionClassID { get; set; }
-
-
-
- public string EducationMissionClassName { get; set; }
-
-
-
- public System.Guid CoursematerialID { get; set; }
-
-
-
- public string CourseName { get; set; }
-
-
-
- public string CoverUrl { get; set; }
-
-
-
- public System.Guid UserID { get; set; }
-
-
-
- public Nullable<System.Guid> SchoolyearID { get; set; }
-
-
-
- public Nullable<System.Guid> TeacherID { get; set; }
- }
- }
|