You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
855 B
36 lines
855 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace XS_Model
|
|
{
|
|
/// <summary>
|
|
/// SHUTTLE_POSITION实体类
|
|
/// </summary>
|
|
[Serializable]
|
|
public class SHUTTLE_POSITION
|
|
{
|
|
/// <summary>
|
|
/// 设备索引
|
|
/// </summary>
|
|
public int F_DeviceIndex { get; set; }
|
|
/// <summary>
|
|
/// 位置
|
|
/// </summary>
|
|
public int? F_Postion { get; set; }
|
|
/// <summary>
|
|
/// 电池状态
|
|
/// </summary>
|
|
public int? F_BatteryStatus { get; set; }
|
|
/// <summary>
|
|
/// 平面输出
|
|
/// </summary>
|
|
public int? F_LaneOut { get; set; }
|
|
/// <summary>
|
|
/// 运行状态
|
|
/// </summary>
|
|
public int? F_RunStatus { get; set; }
|
|
}
|
|
}
|