52 lines
2.3 KiB
C#
52 lines
2.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Epost.Model
|
|
{
|
|
public class ShowMessageModel_M
|
|
{
|
|
private string block = string.Empty;
|
|
private string area = string.Empty;
|
|
private string way = string.Empty;
|
|
private string color = "010101";
|
|
private string contents = string.Empty;
|
|
private bool islock = false;
|
|
private string controlIp = string.Empty;
|
|
private string address = string.Empty;
|
|
private string qty = "0";
|
|
private string skuinfo = string.Empty;
|
|
private string location = string.Empty;
|
|
private string unit = " ";
|
|
private string wholeunit = string.Empty;
|
|
private int wholeqty = 0;
|
|
private string title = string.Empty;
|
|
private int type = 2;
|
|
private int isTwinkle = 0;
|
|
private string no = "01";
|
|
private string _Uid = string.Empty;
|
|
public string Block { get => block; set => block = value; }
|
|
public string Area { get => area; set => area = value; }
|
|
public string Way { get => way; set => way = value; }
|
|
public string Color { get => color; set => color = value; }
|
|
public string Contents { get => contents; set => contents = value; }
|
|
public bool Islock { get => islock; set => islock = value; }
|
|
public string ControlIp { get => controlIp; set => controlIp = value; }
|
|
public string Address { get => address; set => address = value; }
|
|
|
|
public string Skuinfo { get => skuinfo; set => skuinfo = value; }
|
|
public string Location { get => location; set => location = value; }
|
|
public string Unit { get => unit; set => unit = value; }
|
|
public string Wholeunit { get => wholeunit; set => wholeunit = value; }
|
|
public int Wholeqty { get => wholeqty; set => wholeqty = value; }
|
|
public string Title { get => title; set => title = value; }
|
|
public int Type { get => type; set => type = value; }
|
|
public int IsTwinkle { get => isTwinkle; set => isTwinkle = value; }
|
|
public string No { get => no; set => no = value; }
|
|
public string Qty { get => qty; set => qty = value; }
|
|
public string Uid { get => _Uid; set => _Uid = value; }
|
|
}
|
|
}
|