SystemSet.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.MiniModels
  4. {
  5. public partial class SystemSet
  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 UploadOss { get; set; }
  20. public int UploadAutoZoomQuality { get; set; }
  21. public string StartAdPhoto { get; set; }
  22. public string TempPathM { get; set; }
  23. public string TempPath { get; set; }
  24. public string Logo { get; set; }
  25. public string WebStatCode { get; set; }
  26. public string Phone { get; set; }
  27. public string Address { get; set; }
  28. public string RightInfo { get; set; }
  29. public string UploadWaterPath { get; set; }
  30. public string UploadWaterPosition { get; set; }
  31. public ulong UploadAutoWater { get; set; }
  32. public int UploadAutoZoomHeight { get; set; }
  33. public int UploadAutoZoomWidth { get; set; }
  34. public ulong UploadAutoZoom { get; set; }
  35. public int UploadMaxSize { get; set; }
  36. public string UploadExt { get; set; }
  37. public string IndexDescription { get; set; }
  38. public string IndexKeyword { get; set; }
  39. public string WebName { get; set; }
  40. public string WebUrl { get; set; }
  41. }
  42. }