服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2024-05-15 6f7b95e640f4539821e5456a27dcb8ddbd9e9c34
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
55
56
57
58
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; }
    }
 
    public class SmtLoadingInput : BaseCodeInput
    {
        public int Step { get; set; }
    }
}