45 lines
1.3 KiB
C#
45 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Epost.Model
|
|
{
|
|
public class WmsOrderModel
|
|
{
|
|
|
|
|
|
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 string WAVENOTE { 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; }
|
|
}
|
|
|
|
}
|
|
}
|