tjx
2025-11-27 501274e382802688fd2222297c0c4e57e2ff28e6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
namespace MES.Service.Dto.webApi;
 
/// <summary>
///     物料库存查询请求DTO
/// </summary>
public class ItemStockQueryDto
{
    /// <summary>
    ///     用户编码
    /// </summary>
    public string? UserCode { get; set; }
    
    /// <summary>
    ///     楼层
    /// </summary>
    public string? Station { get; set; }
 
    /// <summary>
    ///     字符串集合(如条码、物料编号等)
    /// </summary>
    public List<string>? ItemBarcodes { get; set; }
}