11
tjx
4 天以前 e77cc2b8f2a713b3c414a59bfa3a4a78960c5799
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
namespace MES.Service.Dto.webApi;
 
/// <summary>
///     销售托盘明细搜索请求DTO
/// </summary>
public class SalesPalletDetailSearchDto
{
    /// <summary>
    ///     搜索条件对象
    /// </summary>
    public SalesPalletDetailSearchConditions? Conditions { get; set; }
}
 
/// <summary>
///     销售托盘明细搜索条件
/// </summary>
public class SalesPalletDetailSearchConditions
{
    /// <summary>
    ///     栈板码
    /// </summary>
    public string? Stackcode { get; set; }
 
    /// <summary>
    ///     单据编号
    /// </summary>
    public string? BillNo { get; set; }
 
    /// <summary>
    ///     主表ID
    /// </summary>
    public decimal? Mid { get; set; }
 
    /// <summary>
    ///     物料编号
    /// </summary>
    public string? ItemNo { get; set; }
 
    /// <summary>
    ///     物料名称
    /// </summary>
    public string? ItemName { get; set; }
 
    /// <summary>
    ///     物料规格
    /// </summary>
    public string? ItemModel { get; set; }
 
    /// <summary>
    ///     数量
    /// </summary>
    public decimal? Qty { get; set; }
}