ViewUserAttendActivityInfo.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. using System.Collections.Generic;
  3. using Newtonsoft.Json;
  4. namespace YZXYH.Repository.Models
  5. {
  6. [Serializable]
  7. public partial class ViewUserAttendActivityInfo
  8. {
  9. public string Id { get; set; }
  10. public string AlumnusNo { get; set; }
  11. public string AcNo { get; set; }
  12. public string Suggest { get; set; }
  13. public string IsAudit { get; set; }
  14. public string IsCost { get; set; }
  15. public Nullable<System.DateTime> CostTime { get; set; }
  16. public string IsVip { get; set; }
  17. public string Remark { get; set; }
  18. public Nullable<System.DateTime> TimeAttend { get; set; }
  19. public Nullable<System.DateTime> TimeAttendMod { get; set; }
  20. public string Name { get; set; }
  21. public string AcName { get; set; }
  22. public string AcDate { get; set; }
  23. public string AcType { get; set; }
  24. public string Comments { get; set; }
  25. public string Stauts { get; set; }
  26. public string ContactUser { get; set; }
  27. public string Address { get; set; }
  28. public string MaxNum { get; set; }
  29. public string Cost { get; set; }
  30. public Nullable<System.DateTime> TimeStart { get; set; }
  31. public Nullable<System.DateTime> TimeEnd { get; set; }
  32. public Nullable<System.DateTime> TimeCreated { get; set; }
  33. public Nullable<System.DateTime> TimeModify { get; set; }
  34. public string CreatedUserNo { get; set; }
  35. public string HeadDisply { get; set; }
  36. public string SortNo { get; set; }
  37. public string CreatedUserName { get; set; }
  38. }
  39. }