服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2024-07-12 53171273a4cd9049d532f031f389364982d219d7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using System.Collections.Generic;
 
namespace Tiger.Model
{
    public class ApiInput
    {
        /// <summary>
        ///数据库授权查询选项
        /// </summary>
        public AuthOption AuthOption { get; set; }
    }
 
    public class BsPageInput : ApiInput
    {
        public int pageIndex { get; set; }
        public int pageSize { get; set; }
        public int total { get; set; }
        public string Code { get; set; }
    }
 
    public class BsPageOutput<T>
    {
        public List<T> data { get; set; }
        public int total { get; set; }
    }
 
}