using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Common.LocationEnum { public enum LocationStatusEnum { /// /// 空闲 /// [Description("空闲")] Free = 0, /// /// 锁定 /// [Description("锁定")] Lock = 1, /// /// 有货 /// [Description("有货")] InStock = 100, /// /// 空桶 /// [Description("空桶")] EmptyBarrel = 101, } }