123456789101112131415161718192021222324252627282930313233343536373839 |
- using CZFW.Framework.Model.Entity;
- using CZKJ.GBRS2.Entity;
- using System.Collections.Generic;
- namespace CZKJ.GBRS2.WebMVC.Models
- {
- /// <summary>
- /// 客户服务
- /// </summary>
- public class PublicInfoIndexModel : ISeo, IShare
- {
- /// <summary>
- /// 广告位
- /// </summary>
- public GalleryEntity GalleryEntity { get; set; }
- /// <summary>
- /// 左侧类型列表
- /// </summary>
- public IList<PublicTypeEntity> TypeList { get; set; }
- public PublicInfoEntity PublicInfoEntity { get; set; }
- /// <summary>
- /// 文章列表
- /// </summary>
- public IList<PublicInfoEntity> ArticleList { get; set; }
- public int TypeId { get; set; }
- public string TypeName { get; set; }
- public int RowsCount { get; set; }
- public int PageIndex { get; set; }
- public int? Id { get; set; }
- public string SeoTitle { get; set; }
- public string SeoDescription { get; set; }
- public string SeoKeywords { get; set; }
- public string ShareImage { get; set; }
- public string ShareTitle { get; set; }
- public string ShareUrl { get; set; }
- public string ShareDescription { get; set; }
- }
- }
|