服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
2024-11-26 976d3ae1547b896cc5c7875408c09616d5c2ee55
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Tiger.Model
{
    public class iReceiptParam
    {
        public string DeliveryNo { get; set; }
        public string StrongHoid { get; set; }
    }
 
    public class iReceiptInfo
    {
        public string lineNumber { get; set; }
        public string BillCode { get; set; }
        public string SupplierCode { get; set; }
        public string ItemNumber { get; set; }
        public string SeqNumber { get; set; }
        public string BatchOrder { get; set; }
        public string ItemCode { get; set; }
        public string Qty { get; set; }
    }
}