ViewUserAlumniDirectory.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using System;
  2. using System.Collections.Generic;
  3. using Newtonsoft.Json;
  4. namespace YZXYH.Repository.Models
  5. {
  6. [Serializable]
  7. public partial class ViewUserAlumniDirectory
  8. {
  9. public string Id { get; set; }
  10. public string Mobile { get; set; }
  11. public string Password { get; set; }
  12. public string Name { get; set; }
  13. public string NickName { get; set; }
  14. public string Gender { get; set; }
  15. public string Class { get; set; }
  16. public string Email { get; set; }
  17. public Nullable<System.DateTime> Birthday { get; set; }
  18. public string CityNo { get; set; }
  19. public string GraduationYear { get; set; }
  20. public string ContactAddress { get; set; }
  21. public string HomeAddress { get; set; }
  22. public string Workunit { get; set; }
  23. public string WeChat { get; set; }
  24. public string QQ { get; set; }
  25. public string Mobile2 { get; set; }
  26. public string DetaileInfo { get; set; }
  27. public string IsAudited { get; set; }
  28. public string IsPublic { get; set; }
  29. public string IsLocked { get; set; }
  30. public string Vip { get; set; }
  31. public Nullable<System.DateTime> TimeCreate { get; set; }
  32. public Nullable<System.DateTime> TimeModify { get; set; }
  33. public string Remark { get; set; }
  34. public string AlumniChapterName { get; set; }
  35. public string Province { get; set; }
  36. public string CityName { get; set; }
  37. public string IndustryName { get; set; }
  38. public string IndustryType { get; set; }
  39. public string FileName { get; set; }
  40. public string FilePath { get; set; }
  41. public string FileType { get; set; }
  42. public string FileNo { get; set; }
  43. public Nullable<System.DateTime> TimeLastLogin { get; set; }
  44. public string IpAddress { get; set; }
  45. public string AlumniChapterNo { get; set; }
  46. }
  47. }