1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- //------------------------------------------------------------------------------
- // <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>
- /// ER_ExaminationScore
- /// </summary>
- public partial class ER_ExaminationScore
- {
- public ER_ExaminationScore()
- {
- this.ER_Resit = new HashSet<ER_Resit>();
- }
-
- /// <summary>
- /// ExaminationScoreID
- /// </summary>
- public System.Guid ExaminationScoreID { get; set; }
- /// <summary>
- /// ExaminationBatchProjectID
- /// </summary>
- public Nullable<System.Guid> ExaminationBatchProjectID { get; set; }
- /// <summary>
- /// UserID
- /// </summary>
- public Nullable<System.Guid> UserID { get; set; }
- /// <summary>
- /// ExaminationSubjectID
- /// </summary>
- public Nullable<int> ExaminationSubjectID { get; set; }
- /// <summary>
- /// IsResit
- /// </summary>
- public Nullable<bool> IsResit { get; set; }
- /// <summary>
- /// Score
- /// </summary>
- public Nullable<decimal> Score { get; set; }
- /// <summary>
- /// Expire
- /// </summary>
- public Nullable<System.DateTime> Expire { get; set; }
- /// <summary>
- /// Remark
- /// </summary>
- public string Remark { get; set; }
- /// <summary>
- /// RecordStatus
- /// </summary>
- public Nullable<int> RecordStatus { get; set; }
- /// <summary>
- /// CreateTime
- /// </summary>
- public Nullable<System.DateTime> CreateTime { get; set; }
- /// <summary>
- /// CreateUserID
- /// </summary>
- public Nullable<System.Guid> CreateUserID { get; set; }
- /// <summary>
- /// ModifyUserID
- /// </summary>
- public Nullable<System.Guid> ModifyUserID { get; set; }
- /// <summary>
- /// ModifyTime
- /// </summary>
- public Nullable<System.DateTime> ModifyTime { get; set; }
-
- /// <summary>
- /// CF_Student
- /// </summary>
- public virtual CF_Student CF_Student { get; set; }
- /// <summary>
- /// EX_ExaminationBatchProject
- /// </summary>
- public virtual EX_ExaminationBatchProject EX_ExaminationBatchProject { get; set; }
- /// <summary>
- /// ER_Resit
- /// </summary>
- public virtual HashSet<ER_Resit> ER_Resit { get; set; }
- }
- }
|