using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LearningOfficer.OA.Common.Response { /// /// 分页响应实体类 /// /// public class PageResponse { /// /// 总记录条数 /// public int Total { get; set; } /// /// 响应数据 /// public List Items { get; set; } } }