105 lines
3.1 KiB
C#
105 lines
3.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Epost.Model
|
|
{
|
|
public class SendParamModel
|
|
{
|
|
private string _Address = string.Empty;
|
|
private string _Command = string.Empty;
|
|
private string _Parameter = string.Empty;
|
|
private string _Timeout = string.Empty;
|
|
private string _Uid = string.Empty;
|
|
|
|
private string _Mode = string.Empty;
|
|
private string _Beeps = "00";
|
|
private string _Loc = string.Empty;
|
|
private string _Quantity = string.Empty;
|
|
private string _Rfcode = string.Empty;
|
|
private string _Order = string.Empty;
|
|
private string _Type = string.Empty;
|
|
private string _Title = string.Empty;
|
|
private string _W_quantity = string.Empty;
|
|
private string _W_unit = string.Empty;
|
|
private string _Unit = string.Empty;
|
|
private string _Content = string.Empty;
|
|
private string _PicChoose = string.Empty;
|
|
private string _ORcode = string.Empty;
|
|
|
|
private string _Screen = "0";
|
|
private string _Button = "0";
|
|
public string Address
|
|
{
|
|
get
|
|
{
|
|
return _Address;
|
|
}
|
|
|
|
set
|
|
{
|
|
_Address = value;
|
|
}
|
|
}
|
|
|
|
public string Command
|
|
{
|
|
get
|
|
{
|
|
return _Command;
|
|
}
|
|
|
|
set
|
|
{
|
|
_Command = value;
|
|
}
|
|
}
|
|
|
|
public string Parameter
|
|
{
|
|
get
|
|
{
|
|
return _Parameter;
|
|
}
|
|
|
|
set
|
|
{
|
|
_Parameter = value;
|
|
}
|
|
}
|
|
|
|
public string Timeout
|
|
{
|
|
get
|
|
{
|
|
return _Timeout;
|
|
}
|
|
|
|
set
|
|
{
|
|
_Timeout = value;
|
|
}
|
|
}
|
|
|
|
public string Uid { get => _Uid; set => _Uid = value; }
|
|
public string Mode { get => _Mode; set => _Mode = value; }
|
|
public string Beeps { get => _Beeps; set => _Beeps = value; }
|
|
public string Loc { get => _Loc; set => _Loc = value; }
|
|
public string Quantity { get => _Quantity; set => _Quantity = value; }
|
|
public string Rfcode { get => _Rfcode; set => _Rfcode = value; }
|
|
public string Order { get => _Order; set => _Order = value; }
|
|
public string Type { get => _Type; set => _Type = value; }
|
|
public string Title { get => _Title; set => _Title = value; }
|
|
public string W_quantity { get => _W_quantity; set => _W_quantity = value; }
|
|
public string W_unit { get => _W_unit; set => _W_unit = value; }
|
|
public string Unit { get => _Unit; set => _Unit = value; }
|
|
public string Content { get => _Content; set => _Content = value; }
|
|
public string PicChoose { get => _PicChoose; set => _PicChoose = value; }
|
|
public string ORcode { get => _ORcode; set => _ORcode = value; }
|
|
public string Screen { get => _Screen; set => _Screen = value; }
|
|
public string Button { get => _Button; set => _Button = value; }
|
|
}
|
|
}
|