mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-05 17:20:52 +08:00
24 lines
628 B
C#
24 lines
628 B
C#
|
|
using Yi.Framework.Bbs.Domain.Entities.Assignment;
|
|||
|
|
|
|||
|
|
namespace Yi.Framework.Bbs.Domain.Managers.AssignmentProviders;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 定时任务提供者
|
|||
|
|
/// </summary>
|
|||
|
|
public abstract class TimerProvider : IAssignmentProvider
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 时间周期
|
|||
|
|
/// </summary>
|
|||
|
|
protected abstract TimeSpan TimeCycle { get; }
|
|||
|
|
|
|||
|
|
public Task<List<AssignmentDefineAggregateRoot>> GetCanReceiveListAsync(AssignmentContext context)
|
|||
|
|
{
|
|||
|
|
throw new NotImplementedException();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public Task VerifyCanAcceptAsync(AssignmentContext context)
|
|||
|
|
{
|
|||
|
|
throw new NotImplementedException();
|
|||
|
|
}
|
|||
|
|
}
|