//------------------------------------------------------------------------------ // // 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_Grademajor /// public partial class CF_Grademajor { public CF_Grademajor() { this.CF_Classmajor = new HashSet(); } /// /// GrademajorID /// public System.Guid GrademajorID { get; set; } /// /// FacultymajorID /// public Nullable FacultymajorID { get; set; } /// /// Code /// public string Code { get; set; } /// /// Name /// public string Name { get; set; } /// /// Abbreviation /// public string Abbreviation { get; set; } /// /// SchoolyearID /// public Nullable SchoolyearID { get; set; } /// /// SchoolcodeID /// public Nullable SchoolcodeID { get; set; } /// /// GraduatingSemesterID /// public Nullable GraduatingSemesterID { get; set; } /// /// Professional /// public string Professional { get; set; } /// /// SchoolAreaID /// public Nullable SchoolAreaID { 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_Classmajor /// public virtual HashSet CF_Classmajor { get; set; } /// /// CF_Facultymajor /// public virtual CF_Facultymajor CF_Facultymajor { get; set; } /// /// CF_Schoolyear /// public virtual CF_Schoolyear CF_Schoolyear { get; set; } } }