PageUpdateInfo.cs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.MiniModels
  4. {
  5. public partial class PageUpdateInfo
  6. {
  7. public int Id { get; set; }
  8. public int Sort { get; set; }
  9. public int QueryCount { get; set; }
  10. public int Status { get; set; }
  11. public int VersionNo { get; set; }
  12. public DateTime? CreateDate { get; set; }
  13. public DateTime? UpdateDate { get; set; }
  14. public string CreateMan { get; set; }
  15. public string UpdateMan { get; set; }
  16. public string SeoTitle { get; set; }
  17. public string SeoKeyword { get; set; }
  18. public string SeoDescription { get; set; }
  19. public ulong MustUpdate { get; set; }
  20. public string GotoPages { get; set; }
  21. public string RightAction2 { get; set; }
  22. public string RightAction1 { get; set; }
  23. public string LeftAction2 { get; set; }
  24. public string LeftAction1 { get; set; }
  25. public string RightBtn2 { get; set; }
  26. public string RightBtn1 { get; set; }
  27. public string LeftBtn2 { get; set; }
  28. public string LeftBtn1 { get; set; }
  29. public ulong IsSkid { get; set; }
  30. public ulong IsScrollBar { get; set; }
  31. public string Title { get; set; }
  32. public ulong ShowTitle { get; set; }
  33. public string StatusBarStyle { get; set; }
  34. public string TextColor { get; set; }
  35. public string BgColor { get; set; }
  36. public string ModulePath { get; set; }
  37. public int ModuleVersion { get; set; }
  38. }
  39. }