IJobRepository.cs 373 B

12345678910111213141516
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using Datory;
  4. using GxPress.Result.Job;
  5. namespace GxPress.Repository.Interface.Job
  6. {
  7. public interface IJobRepository : IRepository
  8. {
  9. /// <summary>
  10. /// 执行话题
  11. /// </summary>
  12. /// <returns></returns>
  13. Task<IEnumerable<JobTopicResult>> ExecuteTopic();
  14. }
  15. }