Files

15 lines
385 B
C#
Raw Permalink Normal View History

2024-12-03 09:25:16 +08:00
using DOAN.Model.System;
2024-11-28 13:36:05 +08:00
2024-12-03 09:25:16 +08:00
namespace DOAN.ServiceCore.Services
2024-11-28 13:36:05 +08:00
{
public interface ISysTasksLogService : IBaseService<SysTasksLog>
{
/// <summary>
/// 记录任务执行日志
/// </summary>
/// <returns></returns>
//public int AddTaskLog(string jobId);
Task<SysTasksLog> AddTaskLog(string jobId, SysTasksLog tasksLog);
}
}