123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- namespace EMISOnline.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class EM_Coursematerial
- {
- public EM_Coursematerial()
- {
- this.EM_SpecialtyCourse = new HashSet<EM_SpecialtyCourse>();
- }
-
-
-
-
- public System.Guid CoursematerialID { get; set; }
-
-
-
- public Nullable<System.Guid> ClassGroupingID { get; set; }
-
-
-
- public string CourseCode { get; set; }
-
-
-
- public string CourseName { get; set; }
-
-
-
- public string Abbreviation { get; set; }
-
-
-
- public string EnglishName { get; set; }
-
-
-
- public string StandardName { get; set; }
-
-
-
- public string CourseEdition { get; set; }
-
-
-
- public string CourseSynopsis { get; set; }
-
-
-
- public string CourseReserve { get; set; }
-
-
-
- public Nullable<bool> IsEnable { get; set; }
-
-
-
- public Nullable<int> CourseLevelID { get; set; }
-
-
-
- public Nullable<int> CourseScienceID { get; set; }
-
-
-
- public string Remarks { get; set; }
-
-
-
- public Nullable<int> RecordStatus { get; set; }
-
-
-
- public Nullable<System.DateTime> CreateTime { get; set; }
-
-
-
- public Nullable<System.Guid> CreateUserID { get; set; }
-
-
-
- public Nullable<System.Guid> ModifyUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> ModifyTime { get; set; }
-
-
-
-
- public virtual HashSet<EM_SpecialtyCourse> EM_SpecialtyCourse { get; set; }
- }
- }
|