Valeo_Line_MES_backend/RIZO.Tasks/ITaskSchedulerServer.cs

26 lines
613 B
C#
Raw Normal View History

2026-01-10 13:47:54 +08:00
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);
}
}