View_UserAttendMeetingInfos.cs 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. using System;
  2. using System.Collections.Generic;
  3. using Newtonsoft.Json;
  4. namespace YZXYH.Repository.Models
  5. {
  6. [Serializable]
  7. public partial class View_UserAttendMeetingInfos
  8. {
  9. public string Id { get; set; }
  10. public string AlumnusNo { get; set; }
  11. public string AMNo { get; set; }
  12. public string Suggest { get; set; }
  13. public string IsAudit { get; set; }
  14. public string IsLocked { get; set; }
  15. public string IsCost { get; set; }
  16. public string IsBranch { get; set; }
  17. public Nullable<System.DateTime> CostTime { get; set; }
  18. public string IsVip { get; set; }
  19. public string Remark { get; set; }
  20. public Nullable<System.DateTime> TimeCreated { get; set; }
  21. public Nullable<System.DateTime> TimeModify { get; set; }
  22. public string Name { get; set; }
  23. public string Mobile { get; set; }
  24. public string GraduationYear { get; set; }
  25. public string AMName { get; set; }
  26. public string AMYear { get; set; }
  27. public string AMDate { get; set; }
  28. public string Stauts { get; set; }
  29. public Nullable<System.DateTime> TimeEnd { get; set; }
  30. public string CityName { get; set; }
  31. public string NickName { get; set; }
  32. public string Gender { get; set; }
  33. public string Class { get; set; }
  34. public string Email { get; set; }
  35. public Nullable<System.DateTime> Birthday { get; set; }
  36. public string CityNo { get; set; }
  37. public string ContactAddress { get; set; }
  38. public string HomeAddress { get; set; }
  39. public string Workunit { get; set; }
  40. public string WeChat { get; set; }
  41. public string QQ { get; set; }
  42. public string Mobile2 { get; set; }
  43. public string DetaileInfo { get; set; }
  44. public string IsAudited { get; set; }
  45. public string IsPublic { get; set; }
  46. public string Vip { get; set; }
  47. }
  48. }