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
- {
-
-
-
- public class ProductIndexModel
- {
-
-
-
- public GalleryEntity GalleryEntity { get; set; }
-
-
-
- public IList<GalleryEntity> TypeGalleryList { get; set; }
-
-
-
- public IList<TypeEntity> PersonTypeList { get; set; }
-
-
-
- public IList<ProductEntity> PersonList { get; set; }
-
-
-
- public GalleryEntity CenterGallery { get; set; }
-
-
-
- public IList<ProductEntity> GroupList { get; set; }
-
-
-
- public IList<TypeEntity> GroupTypeList { get; set; }
- }
- }
|