using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Lottomat.Application.Entity.GalleryManage { /// /// 查询子栏目文章列表参数 /// public class ArtListParams { /// /// 当前页 /// public int PageIndex { get; set; } /// /// 每页条数,默认10条 /// public int PageSize { get; set; } /// /// 分类code,值固定为:A,B,C /// public string AreaCode { get; set; } /// /// 期数 /// public int PeriodsNumber { get; set; } } }