1234567891011121314151617 |
- using CZKJ.GBRS2.Entity;
- using System.Collections.Generic;
- namespace CZKJ.GBRS2.WebMVC.Models
- {
- public class HomeSearchModel
- {
- public IList<ArticleEntity> ArticleList { get; set; }
- public IList<ProductEntity> ProductList { get; set; }
- public int aRowsCount { get; set; }
- public int pRowsCount { get; set; }
- public int aPageIndex { get; set; }
- public int pPageIndex { get; set; }
- public string Keywords { get; set; }
- }
- }
|