using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEAWCS_Common.ShuttleCarEnum
{
///
/// 小车状态
///
public enum ShuttleCarTaskType
{
///
/// 待机
///
[Description("待机")]
Standby,
///
/// 入库
///
[Description("入库")]
In,
///
/// 出库
///
[Description("出库")]
Out,
///
/// 充电
///
[Description("充电")]
Charging = 10,
///
/// 退出充电
///
[Description("退出充电")]
ExitCharge = 11,
///
/// A侧回零
///
[Description("A侧回零")]
ZeroA = 13,
///
/// B侧回零
///
[Description("B侧回零")]
ZeroB = 14,
///
/// A侧后退
///
[Description("A侧后退")]
RecoilA = 15,
///
/// B侧后退
///
[Description("B侧后退")]
RecoilB = 16,
}
}