PriceAnnouncementIndexModel.cs 941 B

12345678910111213141516171819202122232425262728293031
  1. using CZFW.Framework.Model.Entity;
  2. using CZFW.Framework.Model.ViewModel;
  3. using CZKJ.GBRS2.Entity;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Threading.Tasks;
  8. namespace CZKJ.GBRS2.WebMVC.Models
  9. {
  10. public class PriceAnnouncementIndexModel
  11. {
  12. /// <summary>
  13. /// 广告位
  14. /// </summary>
  15. public GalleryEntity Banner { get; set; }
  16. public NavigationModel NavigationModel { get; set; }
  17. public IList<TypeEntity> TypeList { get; set; }
  18. public IList<PriceAnnouncementEntity> List { get; set; }
  19. public int TypeId { get; set; }
  20. public DateTime? StartTime { get; set; }
  21. public DateTime? EndTime { get; set; }
  22. public int MaxYear { get; set; }
  23. public int MinYear { get; set; }
  24. public int PageIndex { get; set; }
  25. public int PageSize { get; set; }
  26. public int RowsCount { get; set; }
  27. }
  28. }