16 lines
406 B
C#
16 lines
406 B
C#
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);
|
|
public SysTasksLog AddTaskLog(string jobId, SysTasksLog tasksLog);
|
|
}
|
|
}
|