任务新增网络请求方法

This commit is contained in:
不做码农
2022-12-05 12:03:28 +08:00
parent c3b7aa9b00
commit d1720116db
5 changed files with 45 additions and 19 deletions

View File

@@ -129,5 +129,10 @@ namespace ZR.Model.System.Dto
/// </summary>
public int TaskType { get; set; }
public string SqlText { get; set; }
/// <summary>
/// 网络请求方式
/// </summary>
public string RequestMethod { get; set; }
}
}

View File

@@ -169,5 +169,9 @@ namespace ZR.Model.System
/// SQL语句
/// </summary>
public string SqlText { get; set; }
/// <summary>
/// 网络请求方式
/// </summary>
public string RequestMethod { get; set; }
}
}