using FoodLabeling.Application.Contracts.Dtos.Dashboard; using Volo.Abp.Application.Services; namespace FoodLabeling.Application.Contracts.IServices; /// /// Dashboard 统计接口(美国版) /// public interface IDashboardAppService : IApplicationService { /// /// 获取 Dashboard 总览统计(卡片 + 周趋势 + 分类分布 + Recent Labels 最近打印) /// Task GetOverviewAsync(); }