update 定时任务计划相关
This commit is contained in:
39
Api/Ewide.Core/Enum/RequestTypeEnum.cs
Normal file
39
Api/Ewide.Core/Enum/RequestTypeEnum.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Ewide.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// http请求类型
|
||||
/// </summary>
|
||||
public enum RequestTypeEnum
|
||||
{
|
||||
/// <summary>
|
||||
/// 执行内部方法
|
||||
/// </summary>
|
||||
Run = 0,
|
||||
|
||||
/// <summary>
|
||||
/// GET请求
|
||||
/// </summary>
|
||||
Get = 1,
|
||||
|
||||
/// <summary>
|
||||
/// POST请求
|
||||
/// </summary>
|
||||
Post = 2,
|
||||
|
||||
/// <summary>
|
||||
/// PUT请求
|
||||
/// </summary>
|
||||
Put = 3,
|
||||
|
||||
/// <summary>
|
||||
/// DELETE请求
|
||||
/// </summary>
|
||||
Delete = 4
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user