wbc
2024-12-24 b6ad312c9bc664a07c234dee0668e3c9d41e4293
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace MES.Service.Dto.webApi;
 
public class ErpOutWareDetails
{
    
 
    public decimal 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 decimal OutType { get; set; }
    public string OutNo { get; set; }
    public string? Remarks { get; set; }
    public string? Type { get; set; }
}