using CZFW.Framework.Model.Entity;
using CZKJ.GBRS2.Entity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace CZKJ.GBRS2.WebMVC.Models
{
///
/// 关于我们
///
public class AboutUsModel
{
///
/// 顶部广告位
///
public GalleryEntity TopGallery { get; set; }
///
/// 公司简介
///
public ArticleEntity Summary { get; set; }
///
/// 企业愿景广告位
///
public GalleryEntity EnterpriseVision { get; set; }
///
/// 大事记 法律声明 分支机构
///
public IList CenterGalleryList { get; set; }
///
/// 分支机构 广告位
///
public GalleryEntity Department { get; set; }
///
/// 领导讲话 党建工作
///
public IList LastGalleryList { get; set; }
///
/// 股东背景广告位集合
///
public IList BackgroundList { get; set; }
}
}