//------------------------------------------------------------------------------ // // 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; /// /// EX_ExaminationRoomLayout /// public partial class EX_ExaminationRoomLayout { public EX_ExaminationRoomLayout() { this.EX_ExaminationRoomStudent = new HashSet(); this.CF_Staff = new HashSet(); } /// /// ExaminationRoomLayoutID /// public System.Guid ExaminationRoomLayoutID { get; set; } /// /// ExaminationPlanID /// public Nullable ExaminationPlanID { get; set; } /// /// ClassroomID /// public Nullable ClassroomID { get; set; } /// /// RowSpacing /// public Nullable RowSpacing { get; set; } /// /// ColumnSpacing /// public Nullable ColumnSpacing { get; set; } /// /// StudentOrderType /// public Nullable StudentOrderType { 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_Classroom /// public virtual CF_Classroom CF_Classroom { get; set; } /// /// EX_ExaminationPlan /// public virtual EX_ExaminationPlan EX_ExaminationPlan { get; set; } /// /// EX_ExaminationRoomStudent /// public virtual HashSet EX_ExaminationRoomStudent { get; set; } /// /// CF_Staff /// public virtual HashSet CF_Staff { get; set; } } }