服务端的TigerApi 框架,基于.NET6 2024 版本
YangYuGang
7 天以前 806b3cb3448ad15a5d563937fdac2ffae37342a7
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Tiger.Model
{
    public class iSrmDlvy
    {
        public string supplierName { get; set; }
        public string address { get; set; }
        public string supplierRemark { get; set; }
        public string documnetNumber { get; set; }
        public string fbk5 { get; set; }
        public string driverTelPhone { get; set; }
        public string fbk4 { get; set; }
        public string supplierCode { get; set; }
        public string fbk3 { get; set; }
        public string fbk1 { get; set; }
        public string driverCarNumber { get; set; }
        public string deleted { get; set; }
        public string documentStatus { get; set; }
        public string bookDeliveryDate { get; set; }
        public string driverName { get; set; }
        public string company { get; set; }
        public List<BookDeliveryItems> bookDeliveryItems { get; set; }
        public string deliveryDate { get; set; }
        public List<BarcodeDetailDatas> barcodeDetailDatas { get; set; }
    }
 
    public class BookDeliveryItems
    {
        public string itemNumber { get; set; }
        public string orderNumber { get; set; }
        public string materialSpec { get; set; }
        public string sparesRate { get; set; }
        public string lotNum { get; set; }
        public string deliveryType { get; set; }
        public string purchaseType { get; set; }
        public string materialName { get; set; }
        public string purchaseUnit { get; set; }
        public string sparesQuantity { get; set; }
        public string deleted { get; set; }
        public string projectNo { get; set; }
        public string materialNumber { get; set; }
        public string urgency { get; set; }
        public string itemStatus { get; set; }
        public string orderItemNumber { get; set; }
        public string deliveryQuantity { get; set; }
        public string price { get; set; }
        public string taxPrice { get; set; }
        public string buyerName { get; set; }
    }
 
 
    public class BarcodeDetailDatas
    {
        public string deleted { get; set; }
        public string materialNumber { get; set; }
        public string packetBarcodeNumber { get; set; }
        public string bookDeliveryNumber { get; set; }
        public string cartonBarcodeNumber { get; set; }
        public string materialQuantity { get; set; }
        public string mediumBarcodeNumber { get; set; }
    }
}