(精华)2020年6月26日 C#类库model PageResult

using System.Collections.Generic;

namespace Coldairarrow.Util
{
    /// 
    /// 分页返回结果
    /// 
    /// 
    public class PageResult<T> : AjaxResult<List<T>>
    {
        /// 
        /// 总记录数
        /// 
        public int Total { get; set; }
    }
}

你可能感兴趣的:(#,C#类库model)