123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // 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.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
- /// <summary>
- /// EM_EvaluationTable
- /// </summary>
- public partial class EM_EvaluationTable
- {
- public EM_EvaluationTable()
- {
- this.EM_EvaluationEnter = new HashSet<EM_EvaluationEnter>();
- this.EM_EvaluationSetting = new HashSet<EM_EvaluationSetting>();
- this.EM_EvaluationStudentSetting = new HashSet<EM_EvaluationStudentSetting>();
- this.EM_EvaluationTarget = new HashSet<EM_EvaluationTarget>();
- this.EM_TeacherEvaluation = new HashSet<EM_TeacherEvaluation>();
- }
-
- /// <summary>
- /// EvaluationTableID
- /// </summary>
- public System.Guid EvaluationTableID { get; set; }
- /// <summary>
- /// EvaluationParticipateTypeID
- /// </summary>
- public Nullable<System.Guid> EvaluationParticipateTypeID { get; set; }
- /// <summary>
- /// EvaluationTypeID
- /// </summary>
- public Nullable<System.Guid> EvaluationTypeID { get; set; }
- /// <summary>
- /// EvaluationIntTypeID
- /// </summary>
- public Nullable<System.Guid> EvaluationIntTypeID { get; set; }
- /// <summary>
- /// Code
- /// </summary>
- public string Code { get; set; }
- /// <summary>
- /// Name
- /// </summary>
- public string Name { get; set; }
- /// <summary>
- /// Weight
- /// </summary>
- public Nullable<int> Weight { get; set; }
- /// <summary>
- /// IsEnabled
- /// </summary>
- public Nullable<bool> IsEnabled { get; set; }
- /// <summary>
- /// Remark
- /// </summary>
- public string Remark { get; set; }
- /// <summary>
- /// RecordStatus
- /// </summary>
- public Nullable<int> RecordStatus { get; set; }
- /// <summary>
- /// CreateUserID
- /// </summary>
- public Nullable<System.Guid> CreateUserID { get; set; }
- /// <summary>
- /// CreateTime
- /// </summary>
- public Nullable<System.DateTime> CreateTime { get; set; }
- /// <summary>
- /// ModifyUserID
- /// </summary>
- public Nullable<System.Guid> ModifyUserID { get; set; }
- /// <summary>
- /// ModifyTime
- /// </summary>
- public Nullable<System.DateTime> ModifyTime { get; set; }
-
- /// <summary>
- /// EM_EvaluationEnter
- /// </summary>
- public virtual HashSet<EM_EvaluationEnter> EM_EvaluationEnter { get; set; }
- /// <summary>
- /// EM_EvaluationIntType
- /// </summary>
- public virtual EM_EvaluationIntType EM_EvaluationIntType { get; set; }
- /// <summary>
- /// EM_EvaluationParticipateType
- /// </summary>
- public virtual EM_EvaluationParticipateType EM_EvaluationParticipateType { get; set; }
- /// <summary>
- /// EM_EvaluationSetting
- /// </summary>
- public virtual HashSet<EM_EvaluationSetting> EM_EvaluationSetting { get; set; }
- /// <summary>
- /// EM_EvaluationStudentSetting
- /// </summary>
- public virtual HashSet<EM_EvaluationStudentSetting> EM_EvaluationStudentSetting { get; set; }
- /// <summary>
- /// EM_EvaluationType
- /// </summary>
- public virtual EM_EvaluationType EM_EvaluationType { get; set; }
- /// <summary>
- /// EM_EvaluationTarget
- /// </summary>
- public virtual HashSet<EM_EvaluationTarget> EM_EvaluationTarget { get; set; }
- /// <summary>
- /// EM_TeacherEvaluation
- /// </summary>
- public virtual HashSet<EM_TeacherEvaluation> EM_TeacherEvaluation { get; set; }
- }
- }
|