123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- using CZFW.Framework.Model.Entity;
- using CZFW.Framework.Model.ViewModel;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace CZKJ.GBRS2.WebMVC.Models
- {
- public class FooterModel
- {
-
-
-
- public string Phone { get; set; }
-
-
-
- public string ZipCode { get; set; }
-
-
-
- public string Address { get; set; }
-
-
-
- public string WeChatCode { get; set; }
-
-
-
- public string MicroBlog { get; set; }
-
-
-
- public NavigationModel NavigationModel { get; set; }
-
-
-
- public NavigationModel NavigationHModel { get; set; }
-
-
-
- public IList<LinkEntity> LinkList { get; set; }
-
-
-
- public string Record { get; set; }
- }
- }
|