IExQueryAppService.cs 293 B

123456789101112131415
  1. using System.Threading.Tasks;
  2. using Abp.Application.Services;
  3. using Abp.Web.Models;
  4. using WeEngine.Statistic;
  5. namespace WeApp.BaseSystem.ExQuery
  6. {
  7. public interface IExQueryAppService : IApplicationService
  8. {
  9. [DontWrapResult]
  10. Task<StatisticDto> Statistic();
  11. }
  12. }