- using System.Threading.Tasks;
- using Abp.Application.Services;
- using Abp.Web.Models;
- using WeEngine.Statistic;
- namespace WeApp.BaseSystem.ExQuery
- {
- public interface IExQueryAppService : IApplicationService
- {
- [DontWrapResult]
- Task<StatisticDto> Statistic();
- }
- }
|