using System.Collections.Generic; namespace Admin.Core.Common.Output { /// /// 分页信息输出 /// public class PageOutput { /// /// 数据总数 /// public long Total { get; set; } = 0; /// /// 数据 /// public IList List { get; set; } } }