12345678910111213141516171819 |
- using CZFW.Framework.Model.Entity;
- using CZKJ.GBRS2.Entity;
- using System.Collections.Generic;
- namespace CZKJ.GBRS2.WebMVC.Models
- {
- public class ArticleListModel
- {
- public int? ParentId { get; set; }
- //public int? TypeId { get; set; }
- public IList<TypeEntity> TypeList { get; set; }
- public TypeEntity TypeEntity { get; set; }
- public IList<ArticleEntity> ArticelList { get; set; }
- public int RowsCount { get; set; }
- public int PageIndex { get; set; }
- public IList<FilesEntity> FileList { get; set; }
- }
- }
|