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
namespace Admin.NET.Application;
 
/// <summary>
/// 组盘扫描跟踪号 输出参数
/// </summary>
public class PdaBindListForSNCodeOutput
{
    /// <summary>
    /// 库存对象
    /// </summary>
    public WmsStockQuanOutput stockQuanOutput { get; set; }
 
    /// <summary>
    /// 验证结果
    /// </summary>
    public bool ValidateResult { get; set; }
 
    /// <summary>
    /// 验证失败原因
    /// </summary>
    public string ValidateFailReason { get; set; }
 
}