123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class CF_Campus
- {
- public CF_Campus()
- {
- this.CF_BuildingsInfo = new HashSet<CF_BuildingsInfo>();
- this.CF_College = new HashSet<CF_College>();
- this.CF_Library = new HashSet<CF_Library>();
- this.CF_StaffManageCampus = new HashSet<CF_StaffManageCampus>();
- }
-
-
-
-
- public System.Guid CampusID { get; set; }
-
-
-
- public Nullable<System.Guid> UniversityID { 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 HashSet<CF_BuildingsInfo> CF_BuildingsInfo { get; set; }
-
-
-
- public virtual CF_CampusProfile CF_CampusProfile { get; set; }
-
-
-
- public virtual CF_University CF_University { get; set; }
-
-
-
- public virtual HashSet<CF_College> CF_College { get; set; }
-
-
-
- public virtual HashSet<CF_Library> CF_Library { get; set; }
-
-
-
- public virtual HashSet<CF_StaffManageCampus> CF_StaffManageCampus { get; set; }
- }
- }
|