//------------------------------------------------------------------------------ // // 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; /// /// ER_ExaminationScore /// public partial class ER_ExaminationScore { public ER_ExaminationScore() { this.ER_Resit = new HashSet(); } /// /// ExaminationScoreID /// public System.Guid ExaminationScoreID { get; set; } /// /// ExaminationBatchProjectID /// public Nullable ExaminationBatchProjectID { get; set; } /// /// UserID /// public Nullable UserID { get; set; } /// /// ExaminationSubjectID /// public Nullable ExaminationSubjectID { get; set; } /// /// IsResit /// public Nullable IsResit { get; set; } /// /// Score /// public Nullable Score { get; set; } /// /// Expire /// public Nullable Expire { get; set; } /// /// Remark /// public string Remark { 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; } /// /// CF_Student /// public virtual CF_Student CF_Student { get; set; } /// /// EX_ExaminationBatchProject /// public virtual EX_ExaminationBatchProject EX_ExaminationBatchProject { get; set; } /// /// ER_Resit /// public virtual HashSet ER_Resit { get; set; } } }