using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NXWMS.String.Enums { /// /// 使用标识 /// public enum UsedFlag { [Description("未启用")] WMS = 0, [Description("已启用")] PDA = 1, } }