//------------------------------------------------------------------------------ // // 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; /// /// EM_EvaluationStudentSetting /// public partial class EM_EvaluationStudentSetting { public EM_EvaluationStudentSetting() { this.EM_EvaluationStudent = new HashSet(); this.EM_EvaluationStudentSettingScore = new HashSet(); this.CF_Student = new HashSet(); } /// /// EvaluationStudentSettingID /// public System.Guid EvaluationStudentSettingID { get; set; } /// /// EducationMissionClassID /// public Nullable EducationMissionClassID { get; set; } /// /// EvaluationTableID /// public Nullable EvaluationTableID { get; set; } /// /// UserID /// public Nullable UserID { get; set; } /// /// TeachingMethodID /// public Nullable TeachingMethodID { get; set; } /// /// OpenState /// public Nullable OpenState { 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_Staff /// public virtual CF_Staff CF_Staff { get; set; } /// /// EM_EducationMissionClass /// public virtual EM_EducationMissionClass EM_EducationMissionClass { get; set; } /// /// EM_EvaluationStudent /// public virtual HashSet EM_EvaluationStudent { get; set; } /// /// EM_EvaluationTable /// public virtual EM_EvaluationTable EM_EvaluationTable { get; set; } /// /// EM_EvaluationStudentSettingScore /// public virtual HashSet EM_EvaluationStudentSettingScore { get; set; } /// /// CF_Student /// public virtual HashSet CF_Student { get; set; } } }