123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- namespace EMISOnline.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class CF_StudentContact
- {
-
-
-
- public System.Guid UserID { get; set; }
-
-
-
- public string Email { get; set; }
-
-
-
- public string QQ { get; set; }
-
-
-
- public string Mobile { get; set; }
-
-
-
- public string Telephone { get; set; }
-
-
-
- public string MicroMsgNo { get; set; }
-
-
-
- public string Zipcode { get; set; }
-
-
-
- public string Address { get; set; }
-
-
-
- public string WorkUnit { get; set; }
-
-
-
- public string HomeAddress { get; set; }
-
-
-
- public string Recipient { get; set; }
-
-
-
- public string Dormitory { 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; }
- }
- }
|