using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XS_Model { /// /// SHUTTLE_POSITION实体类 /// [Serializable] public class SHUTTLE_POSITION { /// /// 设备索引 /// public int F_DeviceIndex { get; set; } /// /// 位置 /// public int? F_Postion { get; set; } /// /// 电池状态 /// public int? F_BatteryStatus { get; set; } /// /// 平面输出 /// public int? F_LaneOut { get; set; } /// /// 运行状态 /// public int? F_RunStatus { get; set; } } }