不做码农 be515339fe ♻️代码重构
2023-09-02 17:55:34 +08:00

17 lines
435 B
C#

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