package com.doumee.service.business; import com.doumee.dao.dto.DataBoardQueryDTO; import com.doumee.dao.vo.*; import java.util.List; public interface DataBoardService { DataBoardVO overview(DataBoardQueryDTO query); List memberTrend(); List orderTrend(); List revenueTrend(); ShopPerformanceVO shopPerformance(DataBoardQueryDTO query); }