123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class ER_ScoreConvertedSubmitedScore
- {
- public ER_ScoreConvertedSubmitedScore()
- {
- this.ER_ScoreConvertedSubmitedScoreDetail = new HashSet<ER_ScoreConvertedSubmitedScoreDetail>();
- }
-
-
-
-
- public System.Guid ScoreConvertedSubmitedScoreID { get; set; }
-
-
-
- public Nullable<System.Guid> ScoreConvertByReplaceID { get; set; }
-
-
-
- public Nullable<System.Guid> SchoolyearID { get; set; }
-
-
-
- public Nullable<int> SchoolyearNumID { get; set; }
-
-
-
- public Nullable<System.Guid> FinalExaminationID { get; set; }
-
-
-
- public Nullable<System.Guid> DepartmentID { get; set; }
-
-
-
- public string ClassName { get; set; }
-
-
-
- public Nullable<System.Guid> CoursematerialID { get; set; }
-
-
-
- public Nullable<int> CourseTypeID { get; set; }
-
-
-
- public Nullable<int> ExamsCategoryID { get; set; }
-
-
-
- public Nullable<int> ExaminationModeID { get; set; }
-
-
-
- public Nullable<int> HandleModeID { get; set; }
-
-
-
- public Nullable<decimal> Credit { get; set; }
-
-
-
- public Nullable<int> Totalhours { get; set; }
-
-
-
- public Nullable<System.DateTime> ExamsDatetime { get; set; }
-
-
-
- public Nullable<int> ResultTypeID { get; set; }
-
-
-
- public Nullable<System.Guid> CreatorUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> EntryDeadlineTime { get; set; }
-
-
-
- public Nullable<bool> IsEntry { get; set; }
-
-
-
- public Nullable<int> ExaminationType { get; set; }
-
-
-
- public Nullable<int> StarttermID { get; set; }
-
-
-
- public Nullable<System.Guid> UserID { get; set; }
-
-
-
- public Nullable<int> ExamsStateID { get; set; }
-
-
-
- public Nullable<decimal> TotalScore { get; set; }
-
-
-
- public Nullable<decimal> ScoreCredit { get; set; }
-
-
-
- public Nullable<decimal> GradePoint { get; set; }
-
-
-
- public string Remark { get; set; }
-
-
-
- public Nullable<int> RecordStatus { get; set; }
-
-
-
- public Nullable<System.DateTime> CreateTime { get; set; }
-
-
-
- public Nullable<System.Guid> CreateUserID { get; set; }
-
-
-
- public Nullable<System.Guid> ModifyUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> ModifyTime { get; set; }
-
-
-
-
- public virtual ER_ScoreConvertByReplace ER_ScoreConvertByReplace { get; set; }
-
-
-
- public virtual HashSet<ER_ScoreConvertedSubmitedScoreDetail> ER_ScoreConvertedSubmitedScoreDetail { get; set; }
- }
- }
|