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

92 lines
2.4 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 BoxQueueModel
{
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 carid = string.Empty;
private string matchid = string.Empty;
private string controlip = string.Empty;
private string address = 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 Carid { get => carid; set => carid = value; }
public string Matchid { get => matchid; set => matchid = value; }
public string Controlip { get => controlip; set => controlip = value; }
public string Address { get => address; set => address = value; }
}
}