using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Comm { public enum LocationStateEnum { /// /// 有货 /// Stroge, /// /// 空货位 /// Empty, /// /// 占用 /// Busy, /// /// 入库占用 /// InBusy, /// /// 出库占用 /// OutBusy, /// /// 异常 /// Abnormal, /// /// 桁架下料 /// Load, /// /// 托盘切换 /// Trayswitching } }