init
This commit is contained in:
14
DOAN.ServiceCore/Services/IService/ISysTasksLogService.cs
Normal file
14
DOAN.ServiceCore/Services/IService/ISysTasksLogService.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using DOAN.Model.System;
|
||||
|
||||
namespace DOAN.ServiceCore.Services
|
||||
{
|
||||
public interface ISysTasksLogService : IBaseService<SysTasksLog>
|
||||
{
|
||||
/// <summary>
|
||||
/// 记录任务执行日志
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
//public int AddTaskLog(string jobId);
|
||||
Task<SysTasksLog> AddTaskLog(string jobId, SysTasksLog tasksLog);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user