123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class CF_College
- {
- public CF_College()
- {
- this.CF_Department = new HashSet<CF_Department>();
- this.CF_Facultymajor = new HashSet<CF_Facultymajor>();
- this.CF_Staff = new HashSet<CF_Staff>();
- this.CF_StaffManageCollege = new HashSet<CF_StaffManageCollege>();
- this.EX_ExaminationBatchProjectControl = new HashSet<EX_ExaminationBatchProjectControl>();
- }
-
-
-
-
- public System.Guid CollegeID { get; set; }
-
-
-
- public Nullable<System.Guid> CampusID { get; set; }
-
-
-
- public string No { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public string SimpleName { get; set; }
-
-
-
- public string EnglishName { get; set; }
-
-
-
- public string Remark { 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_Campus CF_Campus { get; set; }
-
-
-
- public virtual CF_CollegeProfile CF_CollegeProfile { get; set; }
-
-
-
- public virtual HashSet<CF_Department> CF_Department { get; set; }
-
-
-
- public virtual HashSet<CF_Facultymajor> CF_Facultymajor { get; set; }
-
-
-
- public virtual HashSet<CF_Staff> CF_Staff { get; set; }
-
-
-
- public virtual HashSet<CF_StaffManageCollege> CF_StaffManageCollege { get; set; }
-
-
-
- public virtual HashSet<EX_ExaminationBatchProjectControl> EX_ExaminationBatchProjectControl { get; set; }
- }
- }
|