服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2025-03-10 40df5d91f800bb8b7be2638c13b4f9292d461221
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tiger.Model.Minsun;
 
namespace Tiger.Model
{
    public class GetOutOtherDetailsInput
    {
        public string BillCode { get; set; }
        public string Barcode { get; set; }
        public string Material { get; set; }
        public string WarehouseCode { get; set; }
        public string RackCode { get; set; }
        public string LocationCode { get; set; }
        public string LedAddr { get; set; }
        public string BizType { get; set; }
        public List<string> OffLocations { get; set; }
        public List<string> OffRacks { get; set; }
        public List<BacodeRackLocation> SuggestBarcodes { get; set; }
        public double PickQty { get; set; }
        public string Qrcode { get; set; }
    }
 
    public class GetOutOtherDetailsOutput
    {
        public string BillCode { get; set; }
        public int BillLine { get; set; }
        public string MaterialCode { get; set; }
        public string MaterialName { get; set; }
        public string MaterialStandard { get; set; }
        public string UnitCode { get; set; }
        public double PRQty { get; set; }
        public double Qty { get; set; }
        public DateTime? DeliveryDate { get; set; }
        public string WarehouseCode { get; set; }
        public string WarehouseName { get; set; }
        public string Barcode { get; set; }
    }
 
    public class OutOtherInput
    {
        public AuthOption AuthOption { get; set; }
        public string ReqNo { get; set; }
        public string isExceed { get; set; }
    }
 
    public class OutOtherOutput
    {
        public string ReqNo { get; set; }
        public bool isExceed { get; set; }
        public bool isCutting { get; set; }
        public string SN { get; set; }
        public string ItemCode { get; set; }
        public double Qty { get; set; }
        public double CutQty { get; set; }
        public string regionCode { get; set; }
        public string locationCode { get; set; }
        public string Status { get; set; }
    }
 
    public class OutOtherDtl
    {
        public string BillCode { get; set; }
        public DateTime BillDate { get; set; }
        public int BillLine { get; set; }
        public string ItemCode { get; set; }
        public string ItemName { get; set; }
        public string Status { get; set; }
        public List<OutOtherDtlItem> Items { get; set; } = new List<OutOtherDtlItem>();
    }
 
    public class OutOtherDtlItem
    {
        public string WHCode { get; set; }
        public string LocationCode { get; set; }
        public string SN { get; set; }
        public double QTY { get; set; }
    }
}