using System.Collections.Generic; using System.Threading.Tasks; using Datory; using GxPress.Result.Job; namespace GxPress.Repository.Interface.Job { public interface IJobRepository : IRepository { /// /// 执行话题 /// /// Task> ExecuteTopic(); } }