wbc
2025-02-27 16a36b5f3e243b21b1b7690960f2dc4b2b665afc
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
namespace MES.Service.Dto.webApi;
 
public class ErpOutWareDetails
{
    
 
    public string OrderType { get; set; }
    public string OrderNumber { get; set; }
    public string OrderNo { get; set; }
    public string? ItemNo { get; set; }
    public string? ItemName { get; set; }
    public string? ItemModel { get; set; }
    public string? DepotCode { get; set; }
    public decimal? Quantity { get; set; }
    public decimal? OutQuantity { get; set; }
    public string OutType { get; set; }
    public string OutNo { get; set; }
    public string OutOrder { get; set; }
    public string? Remarks { get; set; }
    public string? Type { get; set; }
    public decimal? ExpQuantity { get; set; }
    public decimal? ActQuantity { get; set; }
    public string? CustItemNo { get; set; }
    public string? CustItemName { get; set; }
    public string? CustItemModel { get; set; }
    public string? CustBillNo { get; set; }
    public string? MachineType { get; set; }
 
}