19 lines
548 B
C#
19 lines
548 B
C#
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
using DouyinApi.IServices.BASE;
|
|
using DouyinApi.Model;
|
|
using DouyinApi.Model.Models;
|
|
|
|
namespace DouyinApi.IServices
|
|
{
|
|
/// <summary>
|
|
/// ITasksLogServices
|
|
/// </summary>
|
|
public interface ITasksLogServices :IBaseServices<TasksLog>
|
|
{
|
|
public Task<PageModel<TasksLog>> GetTaskLogs(long jobId, int page, int intPageSize,DateTime? runTime,DateTime? endTime);
|
|
public Task<object> GetTaskOverview(long jobId, DateTime? runTime, DateTime? endTime, string type);
|
|
}
|
|
}
|
|
|