using Estsh.Core.Quartz.Model; using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace Estsh.Core.Quartz.Service { public interface IQuartzLogService { Task> GetLogs(string taskName, string groupName, int page, int pageSize = 100); Task Getlastlog(string taskName, string groupName); Task AddLog(tab_quarz_tasklog tab_Quarz_Tasklog); } }