using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Newtonsoft.Json.Linq; using ZKLT.Quartz.Model; namespace ZKLT.Quartz.Interface { public interface IQuartzService { public void CreateHttpJob(QZ_JobParams jobParams); public void CreateSqlJob(); public void CloseJob(QZ_JobParams jobParams); } }