123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class SUP_LessonRecord
- {
- public SUP_LessonRecord()
- {
- this.SUP_LessonRecordAttachment = new HashSet<SUP_LessonRecordAttachment>();
- }
-
-
-
-
- public System.Guid LessonRecordID { get; set; }
-
-
-
- public Nullable<System.Guid> SchoolyearID { get; set; }
-
-
-
- public Nullable<System.DateTime> LessonDate { get; set; }
-
-
-
- public string Location { get; set; }
-
-
-
- public Nullable<System.Guid> SupervisionCollegeID { get; set; }
-
-
-
- public Nullable<System.Guid> UserID { get; set; }
-
-
-
- public Nullable<System.Guid> ClassmajorID { get; set; }
-
-
-
- public Nullable<System.Guid> CoursematerialID { get; set; }
-
-
-
- public Nullable<int> Weekday { get; set; }
-
-
-
- public Nullable<System.Guid> CoursesTimeID { get; set; }
-
-
-
- public Nullable<decimal> TotalScore { get; set; }
-
-
-
- public string Content { get; set; }
-
-
-
- public string Record { get; set; }
-
-
-
- public Nullable<int> RecordStatus { get; set; }
-
-
-
- public Nullable<System.Guid> CreateUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> CreateTime { get; set; }
-
-
-
- public Nullable<System.Guid> ModifyUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> ModifyTime { get; set; }
-
-
-
-
- public virtual CF_Classmajor CF_Classmajor { get; set; }
-
-
-
- public virtual CF_Schoolyear CF_Schoolyear { get; set; }
-
-
-
- public virtual CF_Staff CF_Staff { get; set; }
-
-
-
- public virtual EM_Coursematerial EM_Coursematerial { get; set; }
-
-
-
- public virtual EM_CoursesTime EM_CoursesTime { get; set; }
-
-
-
- public virtual SUP_SupervisionCollege SUP_SupervisionCollege { get; set; }
-
-
-
- public virtual HashSet<SUP_LessonRecordAttachment> SUP_LessonRecordAttachment { get; set; }
- }
- }
|