服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
2024-10-16 a592da60f0db0d4eb950a81a8530e965444be7b1
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Tiger.Model
{
    public class PartialProductKBInput
    {
        public string StorageCode { get; set; }
        public string StationCode { get; set; }
        public int PageNumber { get; set; }
        public int PerNumber { get; set; }
    }
    public class MaterialKBInput
    {
        public string BillCode { get; set; }
        public string MaterialCode { get; set; }
        public string Barcode { get; set; }
        public string WarehouseCode { get; set; }
    }
    public class MaterialKBOutput
    {
        //结构仓数量
        public decimal Structure { get; set; }
        //电子仓数量
        public decimal Electron { get; set; }
        public decimal Total { get; set; }
        public decimal TaskTotal { get; set; }
        public decimal UnCheckNumber { get; set; }
        public List<V_MONTH_IN_SUM> TotalByMonthList { get; set; }
        public List<IncomingRptOutput> IncomingRptList { get; set; }
    }
 
    public class IncomingRptOutput
    {
        public string BillCode { get; set; }
        public string WarehouseCode { get; set; }
        public string MaterialCode { get; set; }
        public string MaterialName { get; set; }
        public int Status { get; set; }
        public decimal? Qty { get; set; }
        public decimal? InstockQty { get; set; }
        public decimal? LeftQty { get; set; }
        public decimal? RejectQty { get; set; }
        public DateTime? CreationTime { get; set; }
    }
    public class TotalByMonth
    {
        public decimal Total { get; set; }
        //public DateTime updatetime { get; set; }
        public string Month { get; set; }
 
        //public string mont
        //{
        //    get
        //    {
        //        return updatetime.Month.ToString();
        //    }
        //}
    }
}