using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_Common.LocationEnum { /// /// 货位状态 /// public enum LocationStatusEnum { /// /// 空闲 /// [Description("空闲")] Free = 0, /// /// 锁定 /// [Description("锁定")] Lock = 1, /// /// 入库锁定 /// [Description("入库锁定")] InLock = 10, /// /// 出库锁定 /// [Description("出库锁定")] OutLock = 20, /// /// 有货 /// [Description("有货")] InStock = 100, /// /// 大托盘锁定 /// [Description("大托盘锁定")] PalletLock = 99 } }