新框架PDA后端(祈禧6月初版本)
南骏 池
6 天以前 fca0719af6948fe8fa1e4f094f8e7dba339c7428
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
namespace NewPdaSqlServer.Dto.service;
 
/// <summary>
///     待处理物料信息DTO
/// </summary>
public class PendingMaterialDto
{
    /// <summary>
    ///     库位编码
    /// </summary>
    public string SectionCode { get; set; }
 
    /// <summary>
    ///     物料编号
    /// </summary>
    public string ItemNo { get; set; }
 
    /// <summary>
    ///     物料名称
    /// </summary>
    public string ItemName { get; set; }
 
    /// <summary>
    ///     物料规格
    /// </summary>
    public string ItemSpec { get; set; }
 
    /// <summary>
    ///     待处理数量
    /// </summary>
    public decimal PendingQty { get; set; }
}