123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // 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.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
- /// <summary>
- /// ES_EducationScheduling
- /// </summary>
- public partial class ES_EducationScheduling
- {
- public ES_EducationScheduling()
- {
- this.ES_EducationSchedulingTeacher = new HashSet<ES_EducationSchedulingTeacher>();
- this.ES_EducationSchedulingWeekNum = new HashSet<ES_EducationSchedulingWeekNum>();
- }
-
- /// <summary>
- /// EducationSchedulingID
- /// </summary>
- public System.Guid EducationSchedulingID { get; set; }
- /// <summary>
- /// SchoolyearID
- /// </summary>
- public Nullable<System.Guid> SchoolyearID { get; set; }
- /// <summary>
- /// EducationSchedulingClassID
- /// </summary>
- public Nullable<System.Guid> EducationSchedulingClassID { get; set; }
- /// <summary>
- /// Weekday
- /// </summary>
- public Nullable<int> Weekday { get; set; }
- /// <summary>
- /// CoursesTimeID
- /// </summary>
- public Nullable<System.Guid> CoursesTimeID { get; set; }
- /// <summary>
- /// ClassroomID
- /// </summary>
- public Nullable<System.Guid> ClassroomID { get; set; }
- /// <summary>
- /// IsAuto
- /// </summary>
- public Nullable<bool> IsAuto { get; set; }
- /// <summary>
- /// RecordStatus
- /// </summary>
- public Nullable<int> RecordStatus { get; set; }
- /// <summary>
- /// CreateTime
- /// </summary>
- public Nullable<System.DateTime> CreateTime { get; set; }
- /// <summary>
- /// CreateUserID
- /// </summary>
- public Nullable<System.Guid> CreateUserID { get; set; }
- /// <summary>
- /// ModifyUserID
- /// </summary>
- public Nullable<System.Guid> ModifyUserID { get; set; }
- /// <summary>
- /// ModifyTime
- /// </summary>
- public Nullable<System.DateTime> ModifyTime { get; set; }
-
- /// <summary>
- /// CF_Classroom
- /// </summary>
- public virtual CF_Classroom CF_Classroom { get; set; }
- /// <summary>
- /// CF_Schoolyear
- /// </summary>
- public virtual CF_Schoolyear CF_Schoolyear { get; set; }
- /// <summary>
- /// EM_CoursesTime
- /// </summary>
- public virtual EM_CoursesTime EM_CoursesTime { get; set; }
- /// <summary>
- /// EM_EducationSchedulingClass
- /// </summary>
- public virtual EM_EducationSchedulingClass EM_EducationSchedulingClass { get; set; }
- /// <summary>
- /// ES_EducationSchedulingTeacher
- /// </summary>
- public virtual HashSet<ES_EducationSchedulingTeacher> ES_EducationSchedulingTeacher { get; set; }
- /// <summary>
- /// ES_EducationSchedulingWeekNum
- /// </summary>
- public virtual HashSet<ES_EducationSchedulingWeekNum> ES_EducationSchedulingWeekNum { get; set; }
- }
- }
|