IScheduleTaskAppService.cs 534 B

123456789101112131415161718192021
  1. using Business.ResourceExamineManagement.Dto;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Threading.Tasks;
  5. using Volo.Abp.Application.Dtos;
  6. using Volo.Abp.Application.Services;
  7. namespace Business.ScheduleTaskManagement
  8. {
  9. /// <summary>
  10. /// 同步数据
  11. /// </summary>
  12. public interface IScheduleTaskAppService : IApplicationService
  13. {
  14. /// <summary>
  15. /// 同步基础数据到mongodb
  16. /// </summary>
  17. /// <returns></returns>
  18. Task<ResultDto> SyncBaseDataToMongoDB();
  19. }
  20. }