170 lines
2.9 KiB
C#
170 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 ShowMessageModel
|
|
{
|
|
private string block = string.Empty;
|
|
private string area = string.Empty;
|
|
private string way = string.Empty;
|
|
private byte color = 0;
|
|
private string contents = string.Empty;
|
|
private bool islock = false;
|
|
private string controlIp = string.Empty;
|
|
private string address = string.Empty;
|
|
private int qty = 0;
|
|
private int type = 2;
|
|
private string skuinfo = string.Empty;
|
|
private string location = string.Empty;
|
|
|
|
public string Block
|
|
{
|
|
get
|
|
{
|
|
return block;
|
|
}
|
|
|
|
set
|
|
{
|
|
block = value;
|
|
}
|
|
}
|
|
|
|
public string Area
|
|
{
|
|
get
|
|
{
|
|
return area;
|
|
}
|
|
|
|
set
|
|
{
|
|
area = value;
|
|
}
|
|
}
|
|
|
|
public string Way
|
|
{
|
|
get
|
|
{
|
|
return way;
|
|
}
|
|
|
|
set
|
|
{
|
|
way = value;
|
|
}
|
|
}
|
|
|
|
public byte Color
|
|
{
|
|
get
|
|
{
|
|
return color;
|
|
}
|
|
|
|
set
|
|
{
|
|
color = value;
|
|
}
|
|
}
|
|
|
|
public string Contents
|
|
{
|
|
get
|
|
{
|
|
return contents;
|
|
}
|
|
|
|
set
|
|
{
|
|
contents = value;
|
|
}
|
|
}
|
|
|
|
public bool Islock
|
|
{
|
|
get
|
|
{
|
|
return islock;
|
|
}
|
|
|
|
set
|
|
{
|
|
islock = value;
|
|
}
|
|
}
|
|
|
|
public string ControlIp
|
|
{
|
|
get
|
|
{
|
|
return controlIp;
|
|
}
|
|
|
|
set
|
|
{
|
|
controlIp = value;
|
|
}
|
|
}
|
|
|
|
public string Address
|
|
{
|
|
get
|
|
{
|
|
return address;
|
|
}
|
|
|
|
set
|
|
{
|
|
address = value;
|
|
}
|
|
}
|
|
|
|
public int Qty
|
|
{
|
|
get
|
|
{
|
|
return qty;
|
|
}
|
|
|
|
set
|
|
{
|
|
qty = value;
|
|
}
|
|
}
|
|
|
|
public string Skuinfo
|
|
{
|
|
get
|
|
{
|
|
return skuinfo;
|
|
}
|
|
|
|
set
|
|
{
|
|
skuinfo = value;
|
|
}
|
|
}
|
|
|
|
public string Location
|
|
{
|
|
get
|
|
{
|
|
return location;
|
|
}
|
|
|
|
set
|
|
{
|
|
location = value;
|
|
}
|
|
}
|
|
|
|
public int Type { get => type; set => type = value; }
|
|
}
|
|
}
|