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.
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using EntrustSettle.IServices.BASE;
|
|
|
|
|
using EntrustSettle.Model;
|
|
|
|
|
using EntrustSettle.Model.Models;
|
|
|
|
|
|
|
|
|
|
namespace EntrustSettle.IServices
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// ITasksLogServices
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface ITasksLogServices :IBaseServices<TasksLog>
|
|
|
|
|
{
|
|
|
|
|
public Task<PageModel<TasksLog>> GetTaskLogs(long jobId, int page, int pageSize,DateTime? runTime,DateTime? endTime);
|
|
|
|
|
public Task<object> GetTaskOverview(long jobId, DateTime? runTime, DateTime? endTime, string type);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|