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 EnumAllowFlag { [Description("不允许")] NoAllow, [Description("允许")] Allow, } }