展杰
2024-08-21 dab707634882415dea7c690339d41f0979baa786
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
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; }
    public string? DepotCode { get; set; }
    public string? SuppNo { get; set; }
 
    public string? Factory { get; set; }
 
    public string? Company { get; set; }
    public string? ItemNo { get; set; }
    
    public string? ItemModel { get; set; }
    public string? OrgName { get; set; }
    public string? OrgOwner { get; set; }
    public string? ItemNum { get; set; }
    public string? Printnumn { get; set; }
    
    public string? ItemName { get; set; }
}