123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- namespace EMISOnline.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class CF_Staff
- {
-
-
-
- public System.Guid UserID { get; set; }
-
-
-
- public Nullable<System.Guid> CollegeID { get; set; }
-
-
-
- public Nullable<System.Guid> DepartmentID { get; set; }
-
-
-
- public string StaffCode { get; set; }
-
-
-
- public Nullable<System.DateTime> BirthDate { get; set; }
-
-
-
- public Nullable<int> Sex { get; set; }
-
-
-
- public Nullable<int> TeacherType { get; set; }
-
-
-
- public Nullable<int> IncumbencyState { get; set; }
-
-
-
- public Nullable<int> CertificatesType { get; set; }
-
-
-
- public string CertificatesNum { get; set; }
-
-
-
- public Nullable<int> Situation { get; set; }
-
-
-
- public Nullable<int> LiteracyLevels { get; set; }
-
-
-
- public Nullable<int> DegreeState { get; set; }
-
-
-
- public Nullable<int> LearnPosition { get; set; }
-
-
-
- public Nullable<int> Title { get; set; }
-
-
-
- public Nullable<System.DateTime> WorkDate { get; set; }
-
-
-
- public Nullable<System.DateTime> ComeSchoolDate { get; set; }
-
-
-
- public Nullable<System.DateTime> TeachingDate { get; set; }
-
-
-
- public string PhotoUrl { get; set; }
-
-
-
- public string Profile { get; set; }
-
-
-
- public string Remarks { get; set; }
-
-
-
- public Nullable<int> RecordStatus { 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; }
- }
- }
|