临河任务调度
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

IDataStatisticService.cs 366B

123456789101112131415
  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. }