You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
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<QZ_JobConfig>? _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<QZ_JobConfig>? Params { get => _Params; set => _Params = value;}
|
|
|
|
|
}
|
|
|
|
|
}
|