| 1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using Volo.Abp.Application.Dtos;
- using Volo.Abp.Application.Services;
- namespace Business.ScheduleTaskManagement
- {
- /// <summary>
- /// 同步数据
- /// </summary>
- public interface IScheduleTaskAppService : IApplicationService
- {
- /// <summary>
- /// 同步基础数据到mongodb
- /// </summary>
- /// <returns></returns>
- Task SyncBaseDataToMongoDB();
- }
- }
|