PushLift.cs
781 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XingYe_ACS.BaseStruct
{
public class PushLift
{
/// <summary>
/// 电梯地址
/// </summary>
//public string address { get; set; }
/// <summary>
/// 设备编号
/// </summary>
public string stationNo { get; set; }
/// <summary>
/// 设备类型
/// </summary>
public string stationType { get; set; }
/// <summary>
/// 设备状态信息
/// </summary>
public string status { get; set; }
/// <summary>
/// 设备异常信息
/// </summary>
public string error { get; set; }
}
}