using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_Common.LocationEnum { public enum EnableStatusEnum { /// /// 正常 /// [Description("正常")] Normal = 0, /// /// 只入 /// [Description("只入")] OnlyIn = 1, /// /// 只出 /// [Description("只出")] OnlyOut = 2, /// /// 禁用 /// [Description("禁用")] Disable = 3 } }