1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class EX_ExaminationRoomLayout
- {
- public EX_ExaminationRoomLayout()
- {
- this.EX_ExaminationRoomStudent = new HashSet<EX_ExaminationRoomStudent>();
- this.CF_Staff = new HashSet<CF_Staff>();
- }
-
-
-
-
- public System.Guid ExaminationRoomLayoutID { get; set; }
-
-
-
- public Nullable<System.Guid> ExaminationPlanID { get; set; }
-
-
-
- public Nullable<System.Guid> ClassroomID { get; set; }
-
-
-
- public Nullable<int> RowSpacing { get; set; }
-
-
-
- public Nullable<int> ColumnSpacing { get; set; }
-
-
-
- public Nullable<int> StudentOrderType { get; set; }
-
-
-
- public Nullable<int> RecordStatus { get; set; }
-
-
-
- public Nullable<System.DateTime> CreateTime { get; set; }
-
-
-
- public Nullable<System.Guid> CreateUserID { get; set; }
-
-
-
- public Nullable<System.Guid> ModifyUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> ModifyTime { get; set; }
-
-
-
-
- public virtual CF_Classroom CF_Classroom { get; set; }
-
-
-
- public virtual EX_ExaminationPlan EX_ExaminationPlan { get; set; }
-
-
-
- public virtual HashSet<EX_ExaminationRoomStudent> EX_ExaminationRoomStudent { get; set; }
-
-
-
- public virtual HashSet<CF_Staff> CF_Staff { get; set; }
- }
- }
|