Files
tnb.server/taskschedule/Tnb.TaskScheduler.Interfaces/ITimeTaskService.cs
2023-03-13 15:00:34 +08:00

17 lines
443 B
C#
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace JNPF.TaskScheduler.Interfaces.TaskScheduler;
/// <summary>
    /// 定时任务
    /// 版 本V3.2
    /// 版 权拓通智联科技有限公司http://www.tuotong-tech.com
    /// 作 者JNPF开发平台组
    /// 日 期2021-06-01 .
    /// </summary>
public interface ITimeTaskService
{
/// <summary>
/// 启动自启动任务.
/// </summary>
void StartTimerJob();
}