using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyCode.Project.Infrastructure.Enumeration { /// /// 执行内容 /// public enum FuncType { /// /// 类方法 /// Method = 1, /// /// 存储过程 /// Proc = 2 } }