服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2025-02-26 8c81d2e38a454b467c10d8fe62f73c7230432708
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Tiger.Model.Minsun
{
    public class ProdMaterialReqInput
    {
        public string BillCode { get; set; }
        public string Barcode { get; set; }
        public string Material { get; set; }
        public string WarehouseCode { get; set; }
        public string RackCode { get; set; }
        public string LocationCode { get; set; }
        public string LedAddr { get; set; }
        public string BizType { get; set; }
        public List<string> OffLocations { get; set; }
        public List<string> OffRacks { get; set; }
        public List<BacodeRackLocation> SuggestBarcodes { get; set; }
        public decimal PickQty { get; set; }
        public string Qrcode { get; set; }
    }
 
    public class BacodeRackLocation
    {
        public string Barcode { get; set; }
        public string RackCode { get; set; }
        public string LocationCode { get; set; }
    }
}