ProductListModel.cs 520 B

123456789101112131415161718
  1. using CZFW.Framework.Model.Entity;
  2. using CZKJ.GBRS2.Entity;
  3. using System.Collections.Generic;
  4. namespace CZKJ.GBRS2.WebMVC.Models
  5. {
  6. public class ProductListModel
  7. {
  8. public IList<ProductEntity> ProductList { get; set; }
  9. public IList<TypeEntity> TypeList { get; set; }
  10. public int TypeId { get; set; }
  11. public int ParentId { get; set; }
  12. public string ParentTypeName { get; set; }
  13. public int RowsCount { get; set; }
  14. public int PageIndex { get; set; }
  15. }
  16. }