package com.doumee.service.business; import com.doumee.dao.dto.DataBoardQueryDTO; import com.doumee.dao.dto.FinanceQueryDTO; import com.doumee.dao.dto.TrendQueryDTO; import com.doumee.dao.vo.*; import java.util.List; public interface DataBoardService { DataBoardVO overview(DataBoardQueryDTO query); List memberTrend(TrendQueryDTO query); List orderTrend(TrendQueryDTO query); List revenueTrend(TrendQueryDTO query); ShopPerformanceVO shopPerformance(DataBoardQueryDTO query); List luggageTypeList(DataBoardQueryDTO query); List financeOverview(FinanceQueryDTO query); List shopTop(TrendQueryDTO query); List driverTop(TrendQueryDTO query); /** * 根据订单ID列表构建行李类型分布 */ List buildLuggageTypeList(List orderIds); }