1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class CF_StudentContactContrast
- {
-
-
-
- public System.Guid StudentContrastID { get; set; }
-
-
-
- public string Email { get; set; }
-
-
-
- public string Telephone { get; set; }
-
-
-
- public string Mobile { get; set; }
-
-
-
- public string ZIPCode { get; set; }
-
-
-
- public string WeChatNum { get; set; }
-
-
-
- public string QQ { get; set; }
-
-
-
- public string HomeAddress { get; set; }
-
-
-
- public string WorkUnit { get; set; }
-
-
-
- public string Address { get; set; }
-
-
-
- public string Recipient { get; set; }
-
-
-
- public string Dormitory { 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_StudentContrast CF_StudentContrast { get; set; }
- }
- }
|