123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- 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<GalleryEntity> CenterGalleryList { get; set; }
-
-
-
- public GalleryEntity Department { get; set; }
-
-
-
- public IList<GalleryEntity> LastGalleryList { get; set; }
-
-
-
- public IList<GalleryEntity> BackgroundList { get; set; }
- }
- }
|