123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class EM_EducationMission
- {
- public EM_EducationMission()
- {
- this.EM_EducationMissionClass = new HashSet<EM_EducationMissionClass>();
- this.EM_EducationMissionExamTime = new HashSet<EM_EducationMissionExamTime>();
- this.EM_EducationMissionExamWeekNum = new HashSet<EM_EducationMissionExamWeekNum>();
- this.ER_FinalExamination = new HashSet<ER_FinalExamination>();
- this.ER_RetakePlanStudent = new HashSet<ER_RetakePlanStudent>();
- this.EX_ExaminationPlan = new HashSet<EX_ExaminationPlan>();
- }
-
-
-
-
- public System.Guid EducationMissionID { get; set; }
-
-
-
- public string ClassName { get; set; }
-
-
-
- public Nullable<System.Guid> SchoolyearID { get; set; }
-
-
-
- public Nullable<System.Guid> CollegeID { get; set; }
-
-
-
- public Nullable<System.Guid> DepartmentID { 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_College CF_College { get; set; }
-
-
-
- public virtual CF_Department CF_Department { get; set; }
-
-
-
- public virtual CF_Schoolyear CF_Schoolyear { get; set; }
-
-
-
- public virtual HashSet<EM_EducationMissionClass> EM_EducationMissionClass { get; set; }
-
-
-
- public virtual HashSet<EM_EducationMissionExamTime> EM_EducationMissionExamTime { get; set; }
-
-
-
- public virtual HashSet<EM_EducationMissionExamWeekNum> EM_EducationMissionExamWeekNum { get; set; }
-
-
-
- public virtual HashSet<ER_FinalExamination> ER_FinalExamination { get; set; }
-
-
-
- public virtual HashSet<ER_RetakePlanStudent> ER_RetakePlanStudent { get; set; }
-
-
-
- public virtual HashSet<EX_ExaminationPlan> EX_ExaminationPlan { get; set; }
- }
- }
|