17 lines
438 B
C#
17 lines
438 B
C#
using System.Threading.Tasks;
|
|
using ARW.Model.System;
|
|
using ARW.Repository;
|
|
|
|
namespace ARW.Service.System.IService
|
|
{
|
|
public interface ISysTasksLogService : IBaseService<SysTasksLog>
|
|
{
|
|
/// <summary>
|
|
/// 记录任务执行日志
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
//public int AddTaskLog(string jobId);
|
|
Task<SysTasksLog> AddTaskLog(string jobId, SysTasksLog tasksLog);
|
|
}
|
|
}
|