/* * 作者:吴隆健 * 日期: 2019-04-07 * 时间: 20:05 * */ using System; namespace MrWu.DB { /// /// 方法类型 /// public enum MethodType { /// /// 过程 /// Procedure = 0, /// /// 函数 /// Function = 1, } }