123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class CF_NewStudent
- {
-
-
-
- public System.Guid NewStudentID { get; set; }
-
-
-
- public string ExamineeNum { get; set; }
-
-
-
- public string AdmissionTicketNo { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public Nullable<int> SexID { get; set; }
-
-
-
- public Nullable<int> NationID { get; set; }
-
-
-
- public Nullable<int> PoliticsID { get; set; }
-
-
-
- public Nullable<System.DateTime> BirthDate { get; set; }
-
-
-
- public Nullable<int> CertificatesType { get; set; }
-
-
-
- public string IDNumber { get; set; }
-
-
-
- public Nullable<int> GradeID { get; set; }
-
-
-
- public Nullable<int> SemesterID { get; set; }
-
-
-
- public Nullable<System.Guid> SpecialtyID { get; set; }
-
-
-
- public Nullable<System.DateTime> EntranceDate { get; set; }
-
-
-
- public Nullable<decimal> Score { get; set; }
-
-
-
- public string Telephone { get; set; }
-
-
-
- public string ZIPCode { get; set; }
-
-
-
- public Nullable<int> EntranceWayID { get; set; }
-
-
-
- public Nullable<int> FeaturesID { get; set; }
-
-
-
- public Nullable<int> TerritorialID { get; set; }
-
-
-
- public string Address { get; set; }
-
-
-
- public string Dormitory { get; set; }
-
-
-
- public string EnrollmentNo { get; set; }
-
-
-
- public string RecruitPictureUrl { get; set; }
-
-
-
- public Nullable<bool> IsDoubt { get; set; }
-
-
-
- public Nullable<int> AssignStatus { get; set; }
-
-
-
- public Nullable<int> OrderNo { get; set; }
-
-
-
- public Nullable<System.Guid> CollegeID { get; set; }
-
-
-
- public Nullable<System.Guid> ClassmajorID { get; set; }
-
-
-
- public string StudentNo { get; set; }
-
-
-
- public string Remark { 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_Classmajor CF_Classmajor { get; set; }
-
-
-
- public virtual CF_College CF_College { get; set; }
-
-
-
- public virtual CF_Specialty CF_Specialty { get; set; }
- }
- }
|