服务端的TigerApi 框架,基于.NET6 2024 版本
YangYuGang
2025-04-20 2abf4959b71e7dd6ee6ee8a349ecc5c2f7b20fce
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Tiger.Model.Minsun
{
    public class CustSupplyCheckList
    {
        public string WarehouseCode { get; set; }
        public string MaterialCode { get; set; }
        public string MaterialName { get; set; }
        public string MaterialStandard { get; set; }
        public string Unit { get; set; }
        public double InventoryQty { get; set; }
        public DateTime? DateCode { get; set; }
        public string DateCodeString { get; set; }
        public string LotNo { get; set; }
    }
 
    public class CustSupplyCheckDetail
    {
        public string Barcode { get; set; }
        public string Unit { get; set; }
        public double BarcodeQty { get; set; }
    }
 
    public class InputCustSupplyCheck
    {
        public string SN { get; set; }
        public string StrVenderCode { get; set; }
        public string LotNo { get; set; }
    }
}