1
huangxiaoqiang
2025-12-18 9753fb2756f6b4e30ff79d901a7bb86145517c8b
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_DTO.CalcOut
{
    /// <summary>
    /// 扫描的库存明细DTO
    /// </summary>
    public class ScannedStockDetailDTO
    {
        /// <summary>
        /// 库存明细ID
        /// </summary>
        public int StockDetailId { get; set; }
 
        /// <summary>
        /// 托盘编号
        /// </summary>
        public string PalletCode { get; set; }
 
        /// <summary>
        /// 物料编号
        /// </summary>
        public string MaterielCode { get; set; }
 
        /// <summary>
        /// 物料名称
        /// </summary>
        public string MaterielName { get; set; }
 
        /// <summary>
        /// 批次号
        /// </summary>
        public string BatchNo { get; set; }
 
        /// <summary>
        /// 原始条码
        /// </summary>
        public string OriginalBarcode { get; set; }
 
        /// <summary>
        /// 变动前数量
        /// </summary>
        public decimal BeforeQuantity { get; set; }
 
        /// <summary>
        /// 变动后数量
        /// </summary>
        public decimal AfterQuantity { get; set; }
 
        /// <summary>
        /// 变动数量
        /// </summary>
        public decimal ChangeQuantity { get; set; }
 
        /// <summary>
        /// 是否拆包
        /// </summary>
        public bool IsUnpacked { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public List<MaterialCodeReturnDTO> MaterialCodes { get; set; }
    }
}