update 定时任务计划相关

This commit is contained in:
2021-07-15 15:53:11 +08:00
parent 82460caf6a
commit 231e998277
14 changed files with 1452 additions and 346 deletions

View 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
}
}