using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ZKLT.Quartz.Model { public class QZ_JobParams { private string _TaskId; private string? _Url; private string? _Method; private string? _Headers; private string? _Body; private string? _CronTime; private string? _BindTable; private int _IsLog; private List? _Params; public string TaskId { get => _TaskId; set => _TaskId = value;} public string? Url { get => _Url; set => _Url = value; } public string? Method { get => _Method; set => _Method = value; } public string? Headers { get => _Headers; set => _Headers = value;} public string? Body { get => _Body; set => _Body = value;} public string? CronTime { get => _CronTime; set => _CronTime = value; } public string? BindTable { get => _BindTable; set => _BindTable = value; } public int IsLog { get => _IsLog; set => _IsLog = value; } public List? Params { get => _Params; set => _Params = value;} } }