123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class ER_DegreeApply
- {
-
-
-
- public System.Guid DegreeApplyID { get; set; }
-
-
-
- public Nullable<System.Guid> GraduationApplyID { get; set; }
-
-
-
- public Nullable<System.Guid> ApplySchoolyearID { get; set; }
-
-
-
- public Nullable<System.Guid> DegreeConditionPackageID { get; set; }
-
-
-
- public Nullable<int> DegreeBatchID { get; set; }
-
-
-
- public string DegreeNo { get; set; }
-
-
-
- public Nullable<System.DateTime> GrantDate { get; set; }
-
-
-
- public Nullable<int> ApprovalStatus { get; set; }
-
-
-
- public Nullable<int> DegreeResult { get; set; }
-
-
-
- public string ApprovalResult { get; set; }
-
-
-
- public Nullable<int> RecordStatus { get; set; }
-
-
-
- public string Remark { get; set; }
-
-
-
- public Nullable<System.DateTime> CreateTime { get; set; }
-
-
-
- public Nullable<System.Guid> CreateUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> ModifyTime { get; set; }
-
-
-
- public Nullable<System.Guid> ModifyUserID { get; set; }
-
-
-
-
- public virtual CF_Schoolyear CF_Schoolyear { get; set; }
-
-
-
- public virtual ER_DegreeConditionPackage ER_DegreeConditionPackage { get; set; }
-
-
-
- public virtual ER_GraduationApply ER_GraduationApply { get; set; }
- }
- }
|