服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2024-12-26 8c1002afe5d82010cbabdbc75201fab8b9bb3eea
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 decimal 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 decimal BarcodeQty { get; set; }
    }
 
    public class InputCustSupplyCheck
    {
        public string SN { get; set; }
        public string StrVenderCode { get; set; }
        public string LotNo { get; set; }
    }
}