//------------------------------------------------------------------------------ // // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file will be overwritten if the code is regenerated. // //------------------------------------------------------------------------------ namespace EMIS.Entities { #pragma warning disable 1573 using System; using System.Collections.Generic; /// /// CF_College /// public partial class CF_College { public CF_College() { this.CF_Department = new HashSet(); this.CF_Facultymajor = new HashSet(); this.CF_Staff = new HashSet(); this.CF_StaffManageCollege = new HashSet(); this.EX_ExaminationBatchProjectControl = new HashSet(); } /// /// CollegeID /// public System.Guid CollegeID { get; set; } /// /// CampusID /// public Nullable CampusID { get; set; } /// /// No /// public string No { get; set; } /// /// Name /// public string Name { get; set; } /// /// SimpleName /// public string SimpleName { get; set; } /// /// EnglishName /// public string EnglishName { get; set; } /// /// Remark /// public string Remark { get; set; } /// /// RecordStatus /// public Nullable RecordStatus { get; set; } /// /// CreateUserID /// public Nullable CreateUserID { get; set; } /// /// CreateTime /// public Nullable CreateTime { get; set; } /// /// ModifyUserID /// public Nullable ModifyUserID { get; set; } /// /// ModifyTime /// public Nullable ModifyTime { get; set; } /// /// CF_Campus /// public virtual CF_Campus CF_Campus { get; set; } /// /// CF_CollegeProfile /// public virtual CF_CollegeProfile CF_CollegeProfile { get; set; } /// /// CF_Department /// public virtual HashSet CF_Department { get; set; } /// /// CF_Facultymajor /// public virtual HashSet CF_Facultymajor { get; set; } /// /// CF_Staff /// public virtual HashSet CF_Staff { get; set; } /// /// CF_StaffManageCollege /// public virtual HashSet CF_StaffManageCollege { get; set; } /// /// EX_ExaminationBatchProjectControl /// public virtual HashSet EX_ExaminationBatchProjectControl { get; set; } } }