12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class CF_RecruitstudentsSource
- {
-
-
-
- public System.Guid StudentContrastID { get; set; }
-
-
-
- public string ExamineeNum { get; set; }
-
-
-
- public string AdmissionTicketNo { get; set; }
-
-
-
- public Nullable<int> ExamineeType { get; set; }
-
-
-
- public Nullable<System.Guid> EnteringSchoolYearID { get; set; }
-
-
-
- public Nullable<System.DateTime> EntranceDate { get; set; }
-
-
-
- public Nullable<decimal> Score { get; set; }
-
-
-
- public Nullable<int> EntranceWayID { get; set; }
-
-
-
- public Nullable<int> FeaturesID { get; set; }
-
-
-
- public Nullable<int> TerritorialID { get; set; }
-
-
-
- public string Area { get; set; }
-
-
-
- public string RecruitPictureUrl { get; set; }
-
-
-
-
- public virtual CF_Schoolyear CF_Schoolyear { get; set; }
-
-
-
- public virtual CF_StudentSource CF_StudentSource { get; set; }
- }
- }
|