任务新增执行SQL脚本

This commit is contained in:
不做码农
2022-12-01 17:01:41 +08:00
parent 38d0de26e9
commit c3b7aa9b00
7 changed files with 86 additions and 118 deletions

View File

@@ -161,8 +161,13 @@ namespace ZR.Model.System
/// </summary>
public string ApiUrl { get; set; }
/// <summary>
/// 任务类型 1程序集2网络请求
/// 任务类型 1程序集 2、网络请求 3、SQL语句
/// </summary>
public int TaskType { get; set; }
/// <summary>
/// SQL语句
/// </summary>
public string SqlText { get; set; }
}
}