12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- using CZFW.Framework.Model.Entity;
- using CZKJ.GBRS2.Entity;
- using System.Collections.Generic;
- namespace CZKJ.GBRS2.WebMVC.Models
- {
- public class ServiceIndexModel
- {
-
-
-
- public GalleryEntity GalleryEntity { get; set; }
- public IList<GalleryEntity> GalleryList { get; set; }
-
-
-
- public IList<ArticleEntity> RiskHints { get; set; }
-
-
-
- public IList<ArticleEntity> ServiceGuide { get; set; }
-
-
-
- public IList<FilesEntity> FileList { get; set; }
-
-
-
- public IList<ArticleEntity> EnjoyService { get; set; }
-
-
-
- public string Phone { get; set; }
-
-
-
- public string WorkDay { get; set; }
-
-
-
- public string WorkTime { get; set; }
-
-
-
- public string WordDesc { get; set; }
-
-
-
- public string Address { get; set; }
- }
- }
|