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.
20 lines
507 B
C#
20 lines
507 B
C#
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<ResultData<tab_quarz_tasklog>> GetLogs(string taskName, string groupName, int page, int pageSize = 100);
|
|
Task<tab_quarz_tasklog> Getlastlog(string taskName, string groupName);
|
|
|
|
Task<ResultQuartzData> AddLog(tab_quarz_tasklog tab_Quarz_Tasklog);
|
|
|
|
|
|
|
|
}
|
|
}
|