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