using System.Threading.Tasks; using HT.Cloud.Code; namespace HT.Cloud.Service.AutoJob { public interface IJobTask { //执行方法 Task Start(); } }