啊鑫
2024-08-01 b64efba9b005c074b3963c9d650091c70e46108b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using MES.Service.Dto.@base;
 
namespace MES.Service.Dto.service;
 
public class WarehouseQuery : Page
{
    public decimal? id { get; set; }
 
    public decimal[]? ItemArnDetailIds { get; set; }
 
    public string? itemInId { get; set; }
 
    public string? sectionCode { get; set; }
    public string? barcode { get; set; }
    public string? userName { get; set; }
    public string? billNo { get; set; }
    public short? status { get; set; }
    public DateTime? date { get; set; }
    public string? Type { get; set; }
}