服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
2024-12-04 07bb95e4e2fa1082048d9c50ba7e3c2563e91b00
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; }
    }
}