Blame view

泰额版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/IServices/IDashboardAppService.cs 487 Bytes
59e51671   “wangming”   1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  using FoodLabeling.Application.Contracts.Dtos.Dashboard;
  using Volo.Abp.Application.Services;
  
  namespace FoodLabeling.Application.Contracts.IServices;
  
  /// <summary>
  /// Dashboard 统计接口(美国版)
  /// </summary>
  public interface IDashboardAppService : IApplicationService
  {
      /// <summary>
      /// 获取 Dashboard 总览统计(卡片 + 周趋势 + 分类分布 + Recent Labels 最近打印)
      /// </summary>
      Task<DashboardOverviewOutputDto> GetOverviewAsync();
  }