lixiaojun
2022-08-02 66b07025421f9a1c68c9298b3cc8345280bfc0c7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace IStation.Application
{
    /// <summary>
    /// 泛型分页列表
    /// </summary>
    public class PageListOutput<T>
    {
        /// <summary>
        /// 总条数
        /// </summary>
        public int Total { get; set; }
 
        /// <summary>
        /// 分页列表
        /// </summary>
        public List<T> List { get; set; }
    }
}