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
{
///
/// 广告位
///
public GalleryEntity Banner { get; set; }
public NavigationModel NavigationModel { get; set; }
public IList TypeList { get; set; }
public IList 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; }
}
}