using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NXWMS.Client.String.Enums { /// /// 规则参数标识 /// public enum RuleParamFlag { [Description("无参数")] NotHave = 0, [Description("有参数")] Have = 1, } }