using System.Collections.Generic; using GxPress.Common.Validation; namespace GxPress.Common.Page { /// /// 分页参数 /// public class PageParameter { /// /// 页码 /// //[Min(1)] public int Page { get; set; } = 1; /// /// 每页大小 /// public int PerPage { get; set; } = 15; /// /// 排序字段 /// public string Sort { get; set; } } }