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

167 lines
2.9 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Epost.Model
{
public class BoxPickModel
{
private string matchid = string.Empty;
private string shopid = string.Empty;
private string orderway = string.Empty;
private string wmsboxcode = string.Empty;
private string state = string.Empty;
private string orderid = string.Empty;
private string block = string.Empty;
private string weight = string.Empty;
private int sumquantity =0;
private string location = string.Empty;
private string prino = string.Empty;
public string Matchid
{
get
{
return matchid;
}
set
{
matchid = value;
}
}
public string Shopid
{
get
{
return shopid;
}
set
{
shopid = value;
}
}
public string Orderway
{
get
{
return orderway;
}
set
{
orderway = value;
}
}
public string Wmsboxcode
{
get
{
return wmsboxcode;
}
set
{
wmsboxcode = value;
}
}
public string State
{
get
{
return state;
}
set
{
state = value;
}
}
public string Orderid
{
get
{
return orderid;
}
set
{
orderid = value;
}
}
public string Block
{
get
{
return block;
}
set
{
block = value;
}
}
public string Weight
{
get
{
return weight;
}
set
{
weight = value;
}
}
public int Sumquantity
{
get
{
return sumquantity;
}
set
{
sumquantity = value;
}
}
public string Location
{
get
{
return location;
}
set
{
location = value;
}
}
public string Prino
{
get
{
return prino;
}
set
{
prino = value;
}
}
}
}