25 lines
474 B
C#
25 lines
474 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyCode.Project.Infrastructure.Enumeration
|
|
{
|
|
/// <summary>
|
|
/// 执行内容
|
|
/// </summary>
|
|
public enum FuncType
|
|
{
|
|
/// <summary>
|
|
/// 类方法
|
|
/// </summary>
|
|
Method = 1,
|
|
/// <summary>
|
|
/// 存储过程
|
|
/// </summary>
|
|
Proc = 2
|
|
}
|
|
}
|