using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WMS.Info { public enum EPointSatus { /// /// 占用中 /// [Description("占用中")] Occupied=2, /// /// 闲置中 /// [Description("闲置中")] Idle = 1 } }