pan
2025-11-11 c4e1a656954799267cbd61d3de3a040e8dc8e46a
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_DTO.Outbound
{
    public class OutboundOrderGetDTO
    {
        public string OrderNo { get; set; }
        public int pageNo { get; set; }
 
    }
 
    // 拆包请求
    public class SplitPackageRequest
    {
        public int OutStockLockInfoId { get; set; }
        public string MaterielCode { get; set; }
        public decimal SplitQuantity { get; set; }
        public string Operator { get; set; }
    }
 
 
    public class PickingConfirmRequest
    {
        public int OrderDetailId { get; set; }
        public string Barcode { get; set; }
        public string MaterielCode { get; set; }
        public decimal PickQuantity { get; set; }
        public string LocationCode { get; set; }
        public string PalletCode { get; set; }
    }     
 
    public class DirectOutboundRequest
    {
        public string PalletCode { get; set; }
    }
 
    public class CancelPickingRequest
    {
        public int PickingHistoryId { get; set; }
    }
 
    public class BackToStockRequest
    {
        public string PalletCode { get; set; }
        public string CurrentLocation { get; set; }
        public string TargetLocation { get; set; }
        public string Operator { get; set; }
    }
 
    public class BackToStockCompleteRequest
    {
        public string TaskNum { get; set; }
        public string TargetLocation { get; set; }
        public DateTime CompleteTime { get; set; }
    }
}