定时任务新增加http请求

This commit is contained in:
不做码农
2022-04-03 13:00:30 +08:00
parent 7377a3e167
commit 2bc336ebb2
8 changed files with 149 additions and 57 deletions

View File

@@ -112,6 +112,11 @@ namespace ZR.Model.System.Dto
/// </summary>
[Display(Name = "传入参数")]
public string JobParams { get; set; }
public string ApiUrl { get; set; }
/// <summary>
/// 1、程序集任务 2、apiUrl任务
/// </summary>
public int TaskType { get; set; }
}
/// <summary>
@@ -219,6 +224,10 @@ namespace ZR.Model.System.Dto
/// </summary>
[Display(Name = "传入参数")]
public string JobParams { get; set; }
public string ApiUrl { get; set; }
/// <summary>
/// 1、程序集任务 2、apiUrl任务
/// </summary>
public int TaskType { get; set; }
}
}