Files
T-DAS/Epost.Model/OrdersQueueModel.cs

92 lines
2.2 KiB
C#
Raw Permalink Normal View History

2023-01-13 15:30:20 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Epost.Model
{
public class OrdersQueueModel
{
private int id = 0;
private string shopid =string.Empty;
private string orderid =string.Empty;
private int sort = 0;
private string taskarea=string.Empty;
private int state = 0;
private string taskblock =string.Empty;
private string userCode = string.Empty;
private string boxcode = string.Empty;
private string sku = string.Empty;
private string matchid = string.Empty;
private string location = string.Empty;
private string lightcolor = string.Empty;
public int Id
{
get
{
return id;
}
set
{
id = value;
}
}
public string Shopid
{
get
{
return shopid;
}
set
{
shopid = value;
}
}
public int Sort
{
get
{
return sort;
}
set
{
sort = value;
}
}
public int State
{
get
{
return state;
}
set
{
state = value;
}
}
public string UserCode { get => userCode; set => userCode = value; }
public string Orderid { get => orderid; set => orderid = value; }
public string Boxcode { get => boxcode; set => boxcode = value; }
public string Taskarea { get => taskarea; set => taskarea = value; }
public string Taskblock { get => taskblock; set => taskblock = value; }
public string Sku { get => sku; set => sku = value; }
public string Matchid { get => matchid; set => matchid = value; }
public string Location { get => location; set => location = value; }
public string Lightcolor { get => lightcolor; set => lightcolor = value; }
}
}