init
This commit is contained in:
19
DouyinApi.IServices/ITasksLogServices.cs
Normal file
19
DouyinApi.IServices/ITasksLogServices.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user