PublicInfoIndexModel.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using CZFW.Framework.Model.Entity;
  2. using CZKJ.GBRS2.Entity;
  3. using System.Collections.Generic;
  4. namespace CZKJ.GBRS2.WebMVC.Models
  5. {
  6. /// <summary>
  7. /// 客户服务
  8. /// </summary>
  9. public class PublicInfoIndexModel : ISeo, IShare
  10. {
  11. /// <summary>
  12. /// 广告位
  13. /// </summary>
  14. public GalleryEntity GalleryEntity { get; set; }
  15. /// <summary>
  16. /// 左侧类型列表
  17. /// </summary>
  18. public IList<PublicTypeEntity> TypeList { get; set; }
  19. public PublicInfoEntity PublicInfoEntity { get; set; }
  20. /// <summary>
  21. /// 文章列表
  22. /// </summary>
  23. public IList<PublicInfoEntity> ArticleList { get; set; }
  24. public int TypeId { get; set; }
  25. public string TypeName { get; set; }
  26. public int RowsCount { get; set; }
  27. public int PageIndex { get; set; }
  28. public int? Id { get; set; }
  29. public string SeoTitle { get; set; }
  30. public string SeoDescription { get; set; }
  31. public string SeoKeywords { get; set; }
  32. public string ShareImage { get; set; }
  33. public string ShareTitle { get; set; }
  34. public string ShareUrl { get; set; }
  35. public string ShareDescription { get; set; }
  36. }
  37. }