/** * 订单统计数据接口 */ export interface OrderStat { date: string; // 日期, 例如 "01-04" totalAmount: number;// 订单金额 orderCount: number; // 订单数量 }