123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class CF_Classmajor
- {
- public CF_Classmajor()
- {
- this.CF_Student = new HashSet<CF_Student>();
- this.CF_DifferentDynamic_BeforeClassmajorID = new HashSet<CF_DifferentDynamic>();
- this.CF_DifferentDynamic_AfterClassmajorID = new HashSet<CF_DifferentDynamic>();
- this.CF_NewStudent = new HashSet<CF_NewStudent>();
- this.ER_FinalExamination = new HashSet<ER_FinalExamination>();
- this.ES_ClassmajorScheduleSetting = new HashSet<ES_ClassmajorScheduleSetting>();
- this.SUP_LessonRecord = new HashSet<SUP_LessonRecord>();
- this.DQP_SOC = new HashSet<DQP_SOC>();
- this.EM_EducationMissionClass = new HashSet<EM_EducationMissionClass>();
- this.EM_ExecutableOptionalCourse = new HashSet<EM_ExecutableOptionalCourse>();
- }
-
-
-
-
- public System.Guid ClassmajorID { get; set; }
-
-
-
- public Nullable<System.Guid> GrademajorID { get; set; }
-
-
-
- public string No { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public string Abbreviation { get; set; }
-
-
-
- public string EnglishName { get; set; }
-
-
-
- public Nullable<int> ClassNum { get; set; }
-
-
-
- public Nullable<System.Guid> UserID { get; set; }
-
-
-
- public Nullable<System.Guid> AssistantUserID { get; set; }
-
-
-
- public string Fixedclassroom { get; set; }
-
-
-
- public string Remark { get; set; }
-
-
-
- public Nullable<int> RecordStatus { get; set; }
-
-
-
- public Nullable<System.Guid> CreateUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> CreateTime { get; set; }
-
-
-
- public Nullable<System.Guid> ModifyUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> ModifyTime { get; set; }
-
-
-
-
- public virtual CF_Grademajor CF_Grademajor { get; set; }
-
-
-
- public virtual HashSet<CF_Student> CF_Student { get; set; }
-
-
-
- public virtual HashSet<CF_DifferentDynamic> CF_DifferentDynamic_BeforeClassmajorID { get; set; }
-
-
-
- public virtual HashSet<CF_DifferentDynamic> CF_DifferentDynamic_AfterClassmajorID { get; set; }
-
-
-
- public virtual HashSet<CF_NewStudent> CF_NewStudent { get; set; }
-
-
-
- public virtual HashSet<ER_FinalExamination> ER_FinalExamination { get; set; }
-
-
-
- public virtual HashSet<ES_ClassmajorScheduleSetting> ES_ClassmajorScheduleSetting { get; set; }
-
-
-
- public virtual HashSet<SUP_LessonRecord> SUP_LessonRecord { get; set; }
-
-
-
- public virtual HashSet<DQP_SOC> DQP_SOC { get; set; }
-
-
-
- public virtual HashSet<EM_EducationMissionClass> EM_EducationMissionClass { get; set; }
-
-
-
- public virtual HashSet<EM_ExecutableOptionalCourse> EM_ExecutableOptionalCourse { get; set; }
- }
- }
|