临河任务调度
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

16 lines
366B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Volo.Abp.Application.Dtos;
  7. using Volo.Abp.Application.Services;
  8. namespace Himp.TaskScheduling.Datas
  9. {
  10. public interface IDataStatisticService : IApplicationService
  11. {
  12. Task<PagedResultDto<DataStatisticDto>> GetAsync();
  13. }
  14. }