ActivityInfo.cs 1.0 KB

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using Newtonsoft.Json;
  4. namespace YZXYH.Repository.Models
  5. {
  6. [Serializable]
  7. public partial class ActivityInfo
  8. {
  9. public string Id { get; set; }
  10. public string AcName { get; set; }
  11. public string AcDate { get; set; }
  12. public string AcType { get; set; }
  13. public string Comments { get; set; }
  14. public string Stauts { get; set; }
  15. public string ContactUser { get; set; }
  16. public string Address { get; set; }
  17. public string MaxNum { get; set; }
  18. public string IsLocked { get; set; }
  19. public string Cost { get; set; }
  20. public Nullable<System.DateTime> TimeStart { get; set; }
  21. public System.DateTime TimeEnd { get; set; }
  22. public Nullable<System.DateTime> TimeCreated { get; set; }
  23. public Nullable<System.DateTime> TimeModify { get; set; }
  24. public string CreatedUserNo { get; set; }
  25. public string HeadDisply { get; set; }
  26. public string SortNo { get; set; }
  27. }
  28. }