ZrAdminNetCore/ZR.Service/System/IService/ISysTasksLogService.cs
不做码农 40026f596f 测试
2021-09-27 08:06:09 +08:00

16 lines
408 B
C#

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