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 ProductIndexModel
{
///
/// 顶部广告位
///
public GalleryEntity GalleryEntity { get; set; }
///
/// 保险类别广告位
///
public IList TypeGalleryList { get; set; }
///
/// 个险类型集合
///
public IList PersonTypeList { get; set; }
///
/// 个人保险
///
public IList PersonList { get; set; }
///
/// 企业保险广告位
///
public GalleryEntity CenterGallery { get; set; }
///
/// 团体保险
///
public IList GroupList { get; set; }
///
/// 团险类型集合
///
public IList GroupTypeList { get; set; }
}
}