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 ShuttleCarStatus { /// /// 待机中 /// [Description("待机中")] Standby, /// /// 入库中 /// [Description("入库中")] In, /// /// 出库中 /// [Description("出库中")] Out, /// /// 充电中 /// [Description("充电中")] Charging = 10, /// /// 退出充电 /// [Description("退出充电")] QuitCharging = 11, /// /// A侧回零中 /// [Description("A侧回零中")] ZeroA = 13, /// /// B侧回零中 /// [Description("B侧回零中")] ZeroB= 14, /// /// A侧后退中 /// [Description("A侧后退中")] RecoilA = 15, /// /// B侧后退中 /// [Description("B侧后退中")] RecoilB = 16, } }