//------------------------------------------------------------------------------ // // 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; /// /// SUP_LessonRecord /// public partial class SUP_LessonRecord { public SUP_LessonRecord() { this.SUP_LessonRecordAttachment = new HashSet(); } /// /// LessonRecordID /// public System.Guid LessonRecordID { get; set; } /// /// SchoolyearID /// public Nullable SchoolyearID { get; set; } /// /// LessonDate /// public Nullable LessonDate { get; set; } /// /// Location /// public string Location { get; set; } /// /// SupervisionCollegeID /// public Nullable SupervisionCollegeID { get; set; } /// /// UserID /// public Nullable UserID { get; set; } /// /// ClassmajorID /// public Nullable ClassmajorID { get; set; } /// /// CoursematerialID /// public Nullable CoursematerialID { get; set; } /// /// Weekday /// public Nullable Weekday { get; set; } /// /// CoursesTimeID /// public Nullable CoursesTimeID { get; set; } /// /// TotalScore /// public Nullable TotalScore { get; set; } /// /// Content /// public string Content { get; set; } /// /// Record /// public string Record { get; set; } /// /// RecordStatus /// public Nullable RecordStatus { get; set; } /// /// CreateUserID /// public Nullable CreateUserID { get; set; } /// /// CreateTime /// public Nullable CreateTime { get; set; } /// /// ModifyUserID /// public Nullable ModifyUserID { get; set; } /// /// ModifyTime /// public Nullable ModifyTime { get; set; } /// /// CF_Classmajor /// public virtual CF_Classmajor CF_Classmajor { get; set; } /// /// CF_Schoolyear /// public virtual CF_Schoolyear CF_Schoolyear { get; set; } /// /// CF_Staff /// public virtual CF_Staff CF_Staff { get; set; } /// /// EM_Coursematerial /// public virtual EM_Coursematerial EM_Coursematerial { get; set; } /// /// EM_CoursesTime /// public virtual EM_CoursesTime EM_CoursesTime { get; set; } /// /// SUP_SupervisionCollege /// public virtual SUP_SupervisionCollege SUP_SupervisionCollege { get; set; } /// /// SUP_LessonRecordAttachment /// public virtual HashSet SUP_LessonRecordAttachment { get; set; } } }