using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Common.LocationEnum { /// /// 货位禁用状态 /// public enum EnableStatusEnum { /// /// 正常 /// [Description("正常")] Normal = 1, /// /// 禁用 /// [Description("禁用")] Disable = 99 } }