| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using System;
- using System.Collections.Generic;
- using Newtonsoft.Json;
- namespace YZXYH.Repository.Models
- {
- [Serializable]
- public partial class ViewUserAlumniDirectory
- {
- public string Id { get; set; }
- public string Mobile { get; set; }
- public string Password { get; set; }
- public string Name { get; set; }
- public string NickName { get; set; }
- public string Gender { get; set; }
- public string Class { get; set; }
- public string Email { get; set; }
- public Nullable<System.DateTime> Birthday { get; set; }
- public string CityNo { get; set; }
- public string GraduationYear { get; set; }
- public string ContactAddress { get; set; }
- public string HomeAddress { get; set; }
- public string Workunit { get; set; }
- public string WeChat { get; set; }
- public string QQ { get; set; }
- public string Mobile2 { get; set; }
- public string DetaileInfo { get; set; }
- public string IsAudited { get; set; }
- public string IsPublic { get; set; }
- public string IsLocked { get; set; }
- public string Vip { get; set; }
- public Nullable<System.DateTime> TimeCreate { get; set; }
- public Nullable<System.DateTime> TimeModify { get; set; }
- public string Remark { get; set; }
- public string AlumniChapterName { get; set; }
- public string Province { get; set; }
- public string CityName { get; set; }
- public string IndustryName { get; set; }
- public string IndustryType { get; set; }
- public string FileName { get; set; }
- public string FilePath { get; set; }
- public string FileType { get; set; }
- public string FileNo { get; set; }
- public Nullable<System.DateTime> TimeLastLogin { get; set; }
- public string IpAddress { get; set; }
- public string AlumniChapterNo { get; set; }
- }
- }
|