添加项目文件。

This commit is contained in:
jl
2023-01-13 15:30:20 +08:00
parent 40ed216831
commit bf208bde56
834 changed files with 470902 additions and 0 deletions

View File

@ -0,0 +1,51 @@
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; }
}
}