guiyang-fluorescent-line-lm.../RIZO.Tasks/ITaskSchedulerServer.cs
2025-10-21 13:38:23 +08:00

26 lines
613 B
C#

using Infrastructure.Model;
using System.Threading.Tasks;
using RIZO.Model.System;
namespace RIZO.Tasks
{
public interface ITaskSchedulerServer
{
Task<ApiResult> StartTaskScheduleAsync();
Task<ApiResult> StopTaskScheduleAsync();
Task<ApiResult> AddTaskScheduleAsync(SysTasks tasksQz);
Task<ApiResult> PauseTaskScheduleAsync(SysTasks tasksQz);
Task<ApiResult> ResumeTaskScheduleAsync(SysTasks tasksQz);
Task<ApiResult> DeleteTaskScheduleAsync(SysTasks tasksQz);
Task<ApiResult> RunTaskScheduleAsync(SysTasks tasksQz);
Task<ApiResult> UpdateTaskScheduleAsync(SysTasks tasksQz);
}
}