12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class ER_ScoreConvertByApply
- {
- public ER_ScoreConvertByApply()
- {
- this.ER_ScoreConvertByApplyAttachment = new HashSet<ER_ScoreConvertByApplyAttachment>();
- }
-
-
-
-
- public System.Guid ScoreConvertByApplyID { get; set; }
-
-
-
- public Nullable<System.Guid> SchoolyearID { get; set; }
-
-
-
- public Nullable<System.Guid> UserID { get; set; }
-
-
-
- public Nullable<System.Guid> CoursematerialID { get; set; }
-
-
-
- public Nullable<decimal> TotalScore { 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 EM_Coursematerial { get; set; }
-
-
-
- public virtual HashSet<ER_ScoreConvertByApplyAttachment> ER_ScoreConvertByApplyAttachment { get; set; }
- }
- }
|