This commit is contained in:
@ -9,10 +9,18 @@ namespace Epost.Model
|
||||
public class OrderModel
|
||||
{
|
||||
|
||||
private string _OrderNO = string.Empty;
|
||||
private string _State = string.Empty;// 1亮灯 0灭灯
|
||||
private string _wallNo = string.Empty;
|
||||
private string _location = string.Empty;
|
||||
private string _lightColor = string.Empty;
|
||||
private string _lightType = string.Empty;
|
||||
private string _brightness = string.Empty;
|
||||
private string _status = string.Empty;
|
||||
|
||||
public string OrderNO { get => _OrderNO; set => _OrderNO = value; }
|
||||
public string State { get => _State; set => _State = value; }
|
||||
public string wallNo { get => _wallNo; set => _wallNo = value; }
|
||||
public string lcation { get => _location; set => _location = value; }
|
||||
public string lightColor { get => _lightColor; set => _lightColor = value; }
|
||||
public string lightType { get => _lightType; set => _lightType = value; }
|
||||
public string brightness { get => _brightness; set => _brightness = value; }
|
||||
public string status { get => _status; set => _status = value; }
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user