using System.ComponentModel; namespace Web.Core.Entities.Response { public class PageInput { /// /// /// [Description("当前页码")] public int PageIndex { get; set; } = 1; /// /// /// [Description("每页行数")] public int PageRows { get; set; } = int.MaxValue; /// /// /// [Description("排序列")] public string? SortFileId { get; set; } /// /// /// [Description("排序类型")] public string? SortType { get; set; } /// /// /// [Description("机构编码")] public List? OrgCode { get; set; } } }