Files
T-DAS/Epost.Model/WmsOrderModel.cs
2023-01-13 15:30:20 +08:00

36 lines
1.5 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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; }
}
}