123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class CF_UniversityProfile
- {
-
-
-
- public System.Guid UniversityID { get; set; }
-
-
-
- public Nullable<int> ProvinceID { get; set; }
-
-
-
- public Nullable<int> CityID { get; set; }
-
-
-
- public Nullable<int> DistrictID { get; set; }
-
-
-
- public Nullable<int> PropertyID { get; set; }
-
-
-
- public Nullable<int> SchoolTypeID { get; set; }
-
-
-
- public Nullable<int> ManagerID { get; set; }
-
-
-
- public Nullable<int> FounderTypeID { get; set; }
-
-
-
- public Nullable<int> SchoolLevelID { get; set; }
-
-
-
- public string HeadMasterName { get; set; }
-
-
-
- public Nullable<System.Guid> PartyManageID { get; set; }
-
-
-
- public string LegalPersonName { get; set; }
-
-
-
- public Nullable<System.DateTime> BuildDate { get; set; }
-
-
-
- public Nullable<System.DateTime> AnniversaryDate { get; set; }
-
-
-
- public string SchoolBasis { get; set; }
-
-
-
- public string SchoolMotto { get; set; }
-
-
-
- public Nullable<int> SubjectCount { get; set; }
-
-
-
- public Nullable<bool> Is211University { get; set; }
-
-
-
- public Nullable<bool> IsKeyUniversity { get; set; }
-
-
-
- public Nullable<bool> IsAdultCollege { get; set; }
-
-
-
- public Nullable<bool> IsPostCollege { get; set; }
-
-
-
- public Nullable<bool> IsNetCollege { get; set; }
-
-
-
- public string Telephone { get; set; }
-
-
-
- public string ZIPCode { get; set; }
-
-
-
- public string Email { get; set; }
-
-
-
- public string FAX { get; set; }
-
-
-
- public string PublicNum { get; set; }
-
-
-
- public string HomePage { get; set; }
-
-
-
- public string Address { get; set; }
-
-
-
- public string EnglishAddress { get; set; }
-
-
-
- public string HistoryEvolution { 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_University CF_University { get; set; }
- }
- }
|