//------------------------------------------------------------------------------ // // 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_EvaluationTable /// public partial class EM_EvaluationTable { public EM_EvaluationTable() { this.EM_EvaluationEnter = new HashSet(); this.EM_EvaluationSetting = new HashSet(); this.EM_EvaluationStudentSetting = new HashSet(); this.EM_EvaluationTarget = new HashSet(); this.EM_TeacherEvaluation = new HashSet(); } /// /// EvaluationTableID /// public System.Guid EvaluationTableID { get; set; } /// /// EvaluationParticipateTypeID /// public Nullable EvaluationParticipateTypeID { get; set; } /// /// EvaluationTypeID /// public Nullable EvaluationTypeID { get; set; } /// /// EvaluationIntTypeID /// public Nullable EvaluationIntTypeID { get; set; } /// /// Code /// public string Code { get; set; } /// /// Name /// public string Name { get; set; } /// /// Weight /// public Nullable Weight { get; set; } /// /// IsEnabled /// public Nullable IsEnabled { 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; } /// /// EM_EvaluationEnter /// public virtual HashSet EM_EvaluationEnter { get; set; } /// /// EM_EvaluationIntType /// public virtual EM_EvaluationIntType EM_EvaluationIntType { get; set; } /// /// EM_EvaluationParticipateType /// public virtual EM_EvaluationParticipateType EM_EvaluationParticipateType { get; set; } /// /// EM_EvaluationSetting /// public virtual HashSet EM_EvaluationSetting { get; set; } /// /// EM_EvaluationStudentSetting /// public virtual HashSet EM_EvaluationStudentSetting { get; set; } /// /// EM_EvaluationType /// public virtual EM_EvaluationType EM_EvaluationType { get; set; } /// /// EM_EvaluationTarget /// public virtual HashSet EM_EvaluationTarget { get; set; } /// /// EM_TeacherEvaluation /// public virtual HashSet EM_TeacherEvaluation { get; set; } } }