You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
532 B
C#
18 lines
532 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Core.Service;
|
|
|
|
public interface ISysTimerService
|
|
{
|
|
Task AddTimer(JobInput input);
|
|
void AddTimerJob(JobInput input);
|
|
Task DeleteTimer(DeleteJobInput input);
|
|
Task<dynamic> GetTimer([FromQuery] QueryJobInput input);
|
|
Task<dynamic> GetTimerPageList([FromQuery] JobInput input);
|
|
void StartTimerJob(JobInput input);
|
|
void StopTimerJob(JobInput input);
|
|
Task UpdateTimber(UpdateJobInput input);
|
|
void StartTimerJob();
|
|
}
|