12345678910111213141516171819202122232425262728293031 |
- using CZFW.Framework.Model.Entity;
- using CZFW.Framework.Model.ViewModel;
- using CZKJ.GBRS2.Entity;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace CZKJ.GBRS2.WebMVC.Models
- {
- public class PriceAnnouncementIndexModel
- {
- /// <summary>
- /// 广告位
- /// </summary>
- public GalleryEntity Banner { get; set; }
- public NavigationModel NavigationModel { get; set; }
- public IList<TypeEntity> TypeList { get; set; }
- public IList<PriceAnnouncementEntity> List { get; set; }
- public int TypeId { get; set; }
- public DateTime? StartTime { get; set; }
- public DateTime? EndTime { get; set; }
- public int MaxYear { get; set; }
- public int MinYear { get; set; }
- public int PageIndex { get; set; }
- public int PageSize { get; set; }
- public int RowsCount { get; set; }
- }
- }
|