123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- //------------------------------------------------------------------------------
- // <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_LevelScore
- /// </summary>
- public partial class ER_LevelScore
- {
- public ER_LevelScore()
- {
- this.ER_ScoreConvertByLevelScore = new HashSet<ER_ScoreConvertByLevelScore>();
- }
-
- /// <summary>
- /// LevelScoreID
- /// </summary>
- public System.Guid LevelScoreID { get; set; }
- /// <summary>
- /// UserID
- /// </summary>
- public Nullable<System.Guid> UserID { get; set; }
- /// <summary>
- /// ExaminationSubjectID
- /// </summary>
- public Nullable<System.Guid> ExaminationSubjectID { get; set; }
- /// <summary>
- /// SchoolyearID
- /// </summary>
- public Nullable<System.Guid> SchoolyearID { get; set; }
- /// <summary>
- /// ExaminationDate
- /// </summary>
- public Nullable<System.DateTime> ExaminationDate { get; set; }
- /// <summary>
- /// ScoreNo
- /// </summary>
- public string ScoreNo { get; set; }
- /// <summary>
- /// TotalScore
- /// </summary>
- public Nullable<decimal> TotalScore { get; set; }
- /// <summary>
- /// Remark
- /// </summary>
- public string Remark { get; set; }
- /// <summary>
- /// ApprovalStatus
- /// </summary>
- public Nullable<int> ApprovalStatus { 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>
- /// CF_Schoolyear
- /// </summary>
- public virtual CF_Schoolyear CF_Schoolyear { get; set; }
- /// <summary>
- /// CF_Student
- /// </summary>
- public virtual CF_Student CF_Student { get; set; }
- /// <summary>
- /// EX_ExaminationSubject
- /// </summary>
- public virtual EX_ExaminationSubject EX_ExaminationSubject { get; set; }
- /// <summary>
- /// ER_ScoreConvertByLevelScore
- /// </summary>
- public virtual HashSet<ER_ScoreConvertByLevelScore> ER_ScoreConvertByLevelScore { get; set; }
- }
- }
|