This commit is contained in:
jl
2025-06-17 16:40:02 +08:00
parent 8c1493f76e
commit f7a87c41ff
6 changed files with 192 additions and 37 deletions

View File

@ -8,28 +8,36 @@ namespace Epost.Model
{
public class WmsOrderModel
{
private string orderid = string.Empty;
private int truequantity = 0;
private string oprationtime = string.Empty;
private string batchid = string.Empty;
private string sku = string.Empty;
private string matchid = string.Empty;
private string fromlocation = string.Empty;
private string boxcode = string.Empty;
private string oprationcode = string.Empty;
private int quantity = 0;
private string workblock = string.Empty;
public string Orderid { get => orderid; set => orderid = value; }
public int Truequantity { get => truequantity; set => truequantity = value; }
public string Oprationtime { get => oprationtime; set => oprationtime = value; }
public string Batchid { get => batchid; set => batchid = value; }
public string Sku { get => sku; set => sku = value; }
public string Matchid { get => matchid; set => matchid = value; }
public string Fromlocation { get => fromlocation; set => fromlocation = value; }
public string Boxcode { get => boxcode; set => boxcode = value; }
public int Quantity { get => quantity; set => quantity = value; }
public string Oprationcode { get => oprationcode; set => oprationcode = value; }
public string Workblock { get => workblock; set => workblock = value; }
public class PutOrderReq
{
public string WAVENO { get; set; }
public string SHOPID { get; set; }
public string SHOPNAME { get; set; }
public string ORDERWAY { get; set; }
public string PRINO { get; set; }
public string LOCATION { get; set; }
public string WAREHOUSEID { get; set; }
public List<ORDERITEM> ITEMS { get; set; }
}
public class ORDERITEM
{
public string UUID { get; set; }
public string DOCNO { get; set; }
public string SKU { get; set; }
public string BARCODE { get; set; }
public object BATCHNO { get; set; }
public int ISBATCH { get; set; }
public int QUANTITY { get; set; }
public string DESCR_C { get; set; }
public string UDF01 { get; set; }
public string UDF02 { get; set; }
public string UDF03 { get; set; }
public string UDF04 { get; set; }
public string UDF05 { get; set; }
}
}
}