12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class SUP_SupervisionCollege
- {
- public SUP_SupervisionCollege()
- {
- this.SUP_LessonRecord = new HashSet<SUP_LessonRecord>();
- this.SUP_ProjectRecord = new HashSet<SUP_ProjectRecord>();
- }
-
-
-
-
- public System.Guid SupervisionCollegeID { get; set; }
-
-
-
- public Nullable<System.Guid> CollegeID { get; set; }
-
-
-
- public string Name { 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_College CF_College { get; set; }
-
-
-
- public virtual HashSet<SUP_LessonRecord> SUP_LessonRecord { get; set; }
-
-
-
- public virtual HashSet<SUP_ProjectRecord> SUP_ProjectRecord { get; set; }
- }
- }
|