123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class ER_GraduationApply
- {
- public ER_GraduationApply()
- {
- this.ER_DegreeApply = new HashSet<ER_DegreeApply>();
- }
-
-
-
-
- public System.Guid GraduationApplyID { get; set; }
-
-
-
- public Nullable<System.Guid> UserID { get; set; }
-
-
-
- public Nullable<int> GraduationTypeID { get; set; }
-
-
-
- public Nullable<System.Guid> GraduatingSemesterID { get; set; }
-
-
-
- public Nullable<System.Guid> ApplySchoolyearID { get; set; }
-
-
-
- public Nullable<System.Guid> GraduationConditionPackageID { get; set; }
-
-
-
- public Nullable<int> BeforeInSchoolStatusID { get; set; }
-
-
-
- public Nullable<int> BeforeStudentStatusID { get; set; }
-
-
-
- public Nullable<int> ApprovalStatus { get; set; }
-
-
-
- public Nullable<int> GraduationResult { 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.Guid> ModifyUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> ModifyTime { get; set; }
-
-
-
-
- public virtual CF_Schoolyear ApplySchoolyearID_Nav { get; set; }
-
-
-
- public virtual CF_Schoolyear GraduatingSemesterID_Nav { get; set; }
-
-
-
- public virtual CF_Student CF_Student { get; set; }
-
-
-
- public virtual HashSet<ER_DegreeApply> ER_DegreeApply { get; set; }
-
-
-
- public virtual ER_GraduationConditionPackage ER_GraduationConditionPackage { get; set; }
- }
- }
|