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