123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class EM_ExecutableMinorPlan
- {
- public EM_ExecutableMinorPlan()
- {
- this.EM_ExecutableMinorPlanTeachingModeType = new HashSet<EM_ExecutableMinorPlanTeachingModeType>();
- this.EM_ExecutableMinorPlanTeachingPlace = new HashSet<EM_ExecutableMinorPlanTeachingPlace>();
- this.EM_EducationMissionClass = new HashSet<EM_EducationMissionClass>();
- }
-
-
-
-
- public System.Guid ExecutableMinorPlanID { get; set; }
-
-
-
- public Nullable<System.Guid> MinorPlanID { get; set; }
-
-
-
- public Nullable<System.Guid> SchoolyearID { get; set; }
-
-
-
- public Nullable<System.Guid> CoursematerialID { get; set; }
-
-
-
- public Nullable<System.Guid> DepartmentID { get; set; }
-
-
-
- public Nullable<System.Guid> CollegeID { get; set; }
-
-
-
- public Nullable<int> YearID { get; set; }
-
-
-
- public Nullable<int> StandardID { get; set; }
-
-
-
- public Nullable<int> CourseStructureID { get; set; }
-
-
-
- public Nullable<int> CourseCategoryID { get; set; }
-
-
-
- public Nullable<int> CourseTypeID { get; set; }
-
-
-
- public Nullable<int> CourseQualityID { get; set; }
-
-
-
- public Nullable<int> PracticeTypeID { get; set; }
-
-
-
- public Nullable<int> ExaminationModeID { get; set; }
-
-
-
- public Nullable<int> CourseFineID { get; set; }
-
-
-
- public Nullable<bool> IsSpecialtycore { get; set; }
-
-
-
- public Nullable<bool> IsCooperation { get; set; }
-
-
-
- public Nullable<bool> IsRequired { get; set; }
-
-
-
- public Nullable<bool> IsElective { get; set; }
-
-
-
- public Nullable<bool> IsNetworkCourse { get; set; }
-
-
-
- public Nullable<bool> IsMainCourse { get; set; }
-
-
-
- public Nullable<int> TeachinglanguageID { get; set; }
-
-
-
- public Nullable<int> HandleModeID { get; set; }
-
-
-
- public Nullable<bool> IsNeedMaterial { get; set; }
-
-
-
- public Nullable<int> ResultTypeID { get; set; }
-
-
-
- public string Remarks { 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 EM_Coursematerial EM_Coursematerial { get; set; }
-
-
-
- public virtual EM_MinorPlan EM_MinorPlan { get; set; }
-
-
-
- public virtual HashSet<EM_ExecutableMinorPlanTeachingModeType> EM_ExecutableMinorPlanTeachingModeType { get; set; }
-
-
-
- public virtual HashSet<EM_ExecutableMinorPlanTeachingPlace> EM_ExecutableMinorPlanTeachingPlace { get; set; }
-
-
-
- public virtual EM_ExecutableMinorPlanTeachingSetting EM_ExecutableMinorPlanTeachingSetting { get; set; }
-
-
-
- public virtual HashSet<EM_EducationMissionClass> EM_EducationMissionClass { get; set; }
- }
- }
|