服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
2025-01-16 ee6ed49aa82a2746facff0a89b94d74d37329e85
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Tiger.Model
{
    public class InFinished: BaseInput
    {
        public string WarehouseCode { get; set; }
        /// <summary>
        /// 二级供应商代码
        /// </summary>
        public string SecondSuppCode { get; set; }
 
        public string LotNo { get; set; }
    }
 
    public class InFinishedModel
    {
        public AuthOption AuthOption { get; set; }
        public string SN { get; set; }
    }
    public class InFinishedPuton
    {
        public string LocationCode { get; set; }
        public string WarehouseCode { get; set; }
        public string RackCode { get; set; }
        public string RackType { get; set; }
        public bool IsSmartRack { get; set; }
        public decimal Capacity { get; set; }
        public int LotCount { get; set; }
        public decimal MaxSize { get; set; }
        public int ShelfType { get; set; }
        public bool IsScanShelf { get; set; }
    }
 
    public class InFinishedInput : BaseInput
    {
        public int FinishedType { get; set; }
        public string FinishedNo { get; set; }
        public bool isExceed { get; set; }
    }
    public class InFinishedput
    {
        public int FinishedType { get; set; }
        public string FinishedNo { get; set; }
        public bool isExceed { get; set; }
        public bool isCutting { get; set; }
        public string SN { get; set; }
        public string ItemCode { get; set; }
        public decimal Qty { get; set; }
        public decimal CutQty { get; set; }
        public string regionCode { get; set; }
        public string locationCode { get; set; }
        public string ScanAfCut { get; set; }
    }
    public class FinishedInput
    {
        public string Barcode { get; set; }
        public string ParentBoxBarcode { get; set; }
        public string MaterialCode { get; set; }
        public string MaterialName { get; set; }
        public string MaterialStandard { get; set; }
        public decimal InitialQty { get; set; }
        public decimal CurrentQty { get; set; }
        public string Unit { get; set; }
        public DateTime DateCode { get; set; }
        public DateTime? Period { get; set; }
        public string LotNo { get; set; }
        public string SourceBillCode { get; set; }
        public int? SourceBillLine { get; set; }
        public string StateFlag { get; set; }
 
        public string LocationCode { get; set; }
        public string WarehouseCode { get; set; }
 
        public string IncompleteTips { get; set; }
        public string ReceiptCode { get; set; }
        public bool IsScanShelf { get; set; }
    }
}