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

120 lines
3.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 LabelParamModel
{
private string _Address = string.Empty;
private string _Command = string.Empty;
private string _Parameter = string.Empty;
private string _Timeout = string.Empty;
private string _ControlIP = string.Empty;
private string _Uid = string.Empty;
private string _Mode = "20";
private string _Beeps = string.Empty;
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;
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 ControlIP
{
get
{
return _ControlIP;
}
set
{
_ControlIP = value;
}
}
public string Uid { get => _Uid; set => _Uid = 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 Title { get => _Title; set => _Title = 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 Type { get => _Type; set => _Type = value; }
public string Mode { get => _Mode; set => _Mode = value; }
public string W_quantity { get => _W_quantity; set => _W_quantity = value; }
}
}