15 lines
378 B
C#
15 lines
378 B
C#
using ZR.Model.System;
|
|
|
|
namespace ZR.Service.IService
|
|
{
|
|
public interface ISysTasksLogService : IBaseService<SysTasksLog>
|
|
{
|
|
/// <summary>
|
|
/// 记录任务执行日志
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
//public int AddTaskLog(string jobId);
|
|
public SysTasksLog AddTaskLog(string jobId, SysTasksLog tasksLog);
|
|
}
|
|
}
|