ProductIndexModel.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. using CZFW.Framework.Model.Entity;
  2. using CZKJ.GBRS2.Entity;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Threading.Tasks;
  7. namespace CZKJ.GBRS2.WebMVC.Models
  8. {
  9. /// <summary>
  10. /// 产品展示
  11. /// </summary>
  12. public class ProductIndexModel
  13. {
  14. /// <summary>
  15. /// 顶部广告位
  16. /// </summary>
  17. public GalleryEntity GalleryEntity { get; set; }
  18. /// <summary>
  19. /// 保险类别广告位
  20. /// </summary>
  21. public IList<GalleryEntity> TypeGalleryList { get; set; }
  22. /// <summary>
  23. /// 个险类型集合
  24. /// </summary>
  25. public IList<TypeEntity> PersonTypeList { get; set; }
  26. /// <summary>
  27. /// 个人保险
  28. /// </summary>
  29. public IList<ProductEntity> PersonList { get; set; }
  30. /// <summary>
  31. /// 企业保险广告位
  32. /// </summary>
  33. public GalleryEntity CenterGallery { get; set; }
  34. /// <summary>
  35. /// 团体保险
  36. /// </summary>
  37. public IList<ProductEntity> GroupList { get; set; }
  38. /// <summary>
  39. /// 团险类型集合
  40. /// </summary>
  41. public IList<TypeEntity> GroupTypeList { get; set; }
  42. }
  43. }