1
wbc
2025-05-29 1c752c710464609d137012d6c9ca717a942cb6e9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace MES.Service.Dto.webApi;
 
public class ErpReturnWareDetails
{
    
    public string? ItemNo { get; set; }
    public string? ItemName { get; set; }
    public string? ItemModel { get; set; }
    public decimal? Quantity { get; set; }
    public string? Type { get; set; }
    public string? DepotCode { get; set; }
    public string? ReturnType { get; set; }
    public string? ReturnNo { get; set; }
    public string? ReturnOrder { get; set; }
    public string OrderType { get; set; }
    public string OrderNumber { get; set; }
    public string OrderNo { get; set; }
    public decimal? ActQuantity { get; set; }
    public string? CustItemNo { get; set; }
    public string? CustItemName { get; set; }
    public string? CustItemModel { get; set; }
    public string? Remarks { get; set; }
}