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
387 B
C#
18 lines
387 B
C#
using DS.WMS.Core.TaskInteraction.Dtos;
|
|
|
|
namespace DS.WMS.Core.TaskInteraction.Interface
|
|
{
|
|
/// <summary>
|
|
/// 任务定时服务
|
|
/// </summary>
|
|
public interface ITaskJob
|
|
{
|
|
/// <summary>
|
|
/// 执行
|
|
/// </summary>
|
|
/// <param name="context"></param>
|
|
/// <returns></returns>
|
|
Task Execute(TaskJobContext context);
|
|
}
|
|
}
|