schangxiang@126.com
2025-09-17 ff43ddf18764629ff875478e4e47a7281cbd230a
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 Admin.NET.Application;
 
namespace Admin.NET.Application;
 
 
   
 
/// <summary>
///收货入参
/// </summary>
public class ReceivingProcessInput
{
    /// <summary>
    /// PDA收货操作类型
    /// </summary>
 
    [Required(ErrorMessage = "PDA收货操作类型不能为空")]
    public PDAReceivingActionTypeEnum? PDAReceivingActionType { get; set; }
 
 
    /// <summary>
    /// ASN明细ID
    /// </summary>
    public  long OrderAsnDetailsId { get; set; }
 
    /// <summary>
    /// 采购数量
    /// </summary>
    public decimal? POQuantity { get; set; }
 
    /// <summary>
    /// 本次收货数量
    /// </summary>
    public  decimal UncollectedQuantity { get; set; }
 
 
    /// <summary>
    /// 上传图片 ly-0531
    /// </summary>
    public string ImageIds { get; set; }
 
}
 
public class ReceivingAdapterLogsInput 
{
    // public string Url { get; set; }
    public List<ReceivingProcessInput> OPOrderReceivingAdapterAdd { get; set; }
 
    public long KeyCode { get; set; }
    //public string SID { get; set; }
    //public string ErrMessage { get; set; }
    //public string AdapterReturnMassage { get; set; }
    //public AdminResult<object> AdapterReturnMassageObject { get; set; }
    /// <summary>
    /// 系统报错获取
    /// </summary>
   // public string ErrMessageBySystem { get; set; }
 
 
}