123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class ER_ScoreConvertByReplace
- {
- public ER_ScoreConvertByReplace()
- {
- this.ER_ScoreConvertedSubmitedScore = new HashSet<ER_ScoreConvertedSubmitedScore>();
- }
-
-
-
-
- public System.Guid ScoreConvertByReplaceID { get; set; }
-
-
-
- public Nullable<System.Guid> SchoolyearID { get; set; }
-
-
-
- public Nullable<System.Guid> UserID { get; set; }
-
-
-
- public Nullable<System.Guid> SourceCoursematerialID { get; set; }
-
-
-
- public Nullable<decimal> TotalScore { get; set; }
-
-
-
- public Nullable<System.Guid> TargetCoursematerialID { get; set; }
-
-
-
- public string Reason { get; set; }
-
-
-
- public Nullable<int> RecordStatus { get; set; }
-
-
-
- public Nullable<System.Guid> CreateUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> CreateTime { get; set; }
-
-
-
- public Nullable<System.Guid> ModifyUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> ModifyTime { get; set; }
-
-
-
-
- public virtual CF_Schoolyear CF_Schoolyear { get; set; }
-
-
-
- public virtual CF_Student CF_Student { get; set; }
-
-
-
- public virtual EM_Coursematerial SourceCoursematerialID_Nav { get; set; }
-
-
-
- public virtual EM_Coursematerial TargetCoursematerialID_Nav { get; set; }
-
-
-
- public virtual HashSet<ER_ScoreConvertedSubmitedScore> ER_ScoreConvertedSubmitedScore { get; set; }
- }
- }
|