| 123456789101112131415161718192021 |
- 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
- {
- /// <summary>
- /// 同步数据
- /// </summary>
- public interface IScheduleTaskAppService : IApplicationService
- {
- /// <summary>
- /// 同步基础数据到mongodb
- /// </summary>
- /// <returns></returns>
- Task<ResultDto> SyncBaseDataToMongoDB();
- }
- }
|