//------------------------------------------------------------------------------ // // 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_Schoolyear /// public partial class CF_Schoolyear { public CF_Schoolyear() { this.CF_Grademajor = new HashSet(); this.CF_Recruitstudents = new HashSet(); this.ER_CertisfierDistribute = new HashSet(); this.ER_ProjectScore = new HashSet(); this.EX_ExaminationBatch = new HashSet(); } /// /// SchoolyearID /// public System.Guid SchoolyearID { get; set; } /// /// Code /// public string Code { get; set; } /// /// Years /// public int Years { get; set; } /// /// SchoolcodeID /// public int SchoolcodeID { get; set; } /// /// WeeksNum /// public int WeeksNum { get; set; } /// /// FirstWeek /// public System.DateTime FirstWeek { get; set; } /// /// IsCurrent /// public bool IsCurrent { get; set; } /// /// WeekDays /// public int WeekDays { get; set; } /// /// RecordStatus /// public Nullable RecordStatus { get; set; } /// /// CreateTime /// public Nullable CreateTime { get; set; } /// /// CreateUserID /// public Nullable CreateUserID { get; set; } /// /// ModifyUserID /// public Nullable ModifyUserID { get; set; } /// /// ModifyTime /// public Nullable ModifyTime { get; set; } /// /// Value /// public Nullable Value { get; set; } /// /// CF_Grademajor /// public virtual HashSet CF_Grademajor { get; set; } /// /// CF_Recruitstudents /// public virtual HashSet CF_Recruitstudents { get; set; } /// /// ER_CertisfierDistribute /// public virtual HashSet ER_CertisfierDistribute { get; set; } /// /// ER_ProjectScore /// public virtual HashSet ER_ProjectScore { get; set; } /// /// EX_ExaminationBatch /// public virtual HashSet EX_ExaminationBatch { get; set; } } }