服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2024-12-20 0326dab52668c5f9332ccc34041fcbcfca4191e2
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
using System.Collections.Generic;
 
namespace Tiger.Model
{
    public class BaseInput
    {
        /// <summary>
        ///
        /// </summary>
        public AuthOption AuthOption { get; set; }
 
        /// <summary>
        /// 条码
        /// </summary>
        public string SN { get; set; }
 
        /// <summary>
        /// 海关单号
        /// </summary>
        public string CustomsNo { get; set; }
    }
 
    public class BasePageInput
    {
        public AuthOption AuthOption { get; set; }
        public int pageIndex { get; set; }
        public int pageSize { get; set; }
        public int total { get; set; }
        public string Code { get; set; }
    }
 
    public class BasePageOutput<T>
    {
        public List<T> data { get; set; }
        public int total { get; set; }
    }
 
    public class BaseCodeInput
    {
        public AuthOption AuthOption { get; set; }
        public string Code { get; set; }
    }
 
    public class OutOthDtlInput : BasePageInput
    {
        public bool IsItemCodeList { get; set; }
    }
 
    public class OutWoDtlInput : BasePageInput
    {
        public bool IsItemCodeList { get; set; }
    }
 
}