//------------------------------------------------------------------------------ // // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file will be overwritten if the code is regenerated. // //------------------------------------------------------------------------------ namespace EMIS.Entities { #pragma warning disable 1573 using System; using System.Collections.Generic; /// /// EM_OptionalCoursePlan /// public partial class EM_OptionalCoursePlan { public EM_OptionalCoursePlan() { this.EM_ExecutableOptionalCourse = new HashSet(); this.EM_OptionalCoursePlanTeachingMode = new HashSet(); } /// /// OptionalCourseID /// public System.Guid OptionalCourseID { get; set; } /// /// DepartmentID /// public Nullable DepartmentID { get; set; } /// /// SpecialtyID /// public Nullable SpecialtyID { get; set; } /// /// CoursematerialID /// public Nullable CoursematerialID { get; set; } /// /// CourseStructureID /// public Nullable CourseStructureID { get; set; } /// /// CourseCategoryID /// public Nullable CourseCategoryID { get; set; } /// /// CourseTypeID /// public Nullable CourseTypeID { get; set; } /// /// CourseQualityID /// public Nullable CourseQualityID { get; set; } /// /// PracticeTypeID /// public Nullable PracticeTypeID { get; set; } /// /// ExaminationModeID /// public Nullable ExaminationModeID { get; set; } /// /// TeachinglanguageID /// public Nullable TeachinglanguageID { get; set; } /// /// SchoolyearNumID /// public Nullable SchoolyearNumID { get; set; } /// /// SchoolcodeID /// public Nullable SchoolcodeID { get; set; } /// /// IsEnable /// public Nullable IsEnable { get; set; } /// /// Remarks /// public string Remarks { get; set; } /// /// PeopleNumlower /// public Nullable PeopleNumlower { get; set; } /// /// PeopleNumlimit /// public Nullable PeopleNumlimit { get; set; } /// /// IsOpened /// public Nullable IsOpened { get; set; } /// /// ResultTypeID /// public Nullable ResultTypeID { get; set; } /// /// RecordStatus /// public Nullable RecordStatus { get; set; } /// /// CreateTime /// public Nullable CreateTime { get; set; } /// /// CreateUserID /// public Nullable CreateUserID { get; set; } /// /// ModifyUserID /// public Nullable ModifyUserID { get; set; } /// /// ModifyTime /// public Nullable ModifyTime { get; set; } /// /// CF_Department /// public virtual CF_Department CF_Department { get; set; } /// /// CF_Specialty /// public virtual CF_Specialty CF_Specialty { get; set; } /// /// EM_Coursematerial /// public virtual EM_Coursematerial EM_Coursematerial { get; set; } /// /// EM_ExecutableOptionalCourse /// public virtual HashSet EM_ExecutableOptionalCourse { get; set; } /// /// EM_OptionalCoursePlanTeachingMode /// public virtual HashSet EM_OptionalCoursePlanTeachingMode { get; set; } /// /// EM_OptionalCoursePlanTeachingSetting /// public virtual EM_OptionalCoursePlanTeachingSetting EM_OptionalCoursePlanTeachingSetting { get; set; } } }