AppBottomNavs.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.Models.Main
  4. {
  5. public partial class AppBottomNavs
  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 Version { 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 string BgColor { get; set; }
  20. public string NoPageHint { get; set; }
  21. public string PageName { get; set; }
  22. public string NormalTextColor { get; set; }
  23. public string SelectTextColor { get; set; }
  24. public string NormalIcon { get; set; }
  25. public string SelectIcon { get; set; }
  26. public string Title { get; set; }
  27. public string PagPath { get; set; }
  28. public string ScrollerAnimationImages { get; set; }
  29. public string Style { get; set; }
  30. }
  31. }