getSurveyData($startDate, $endDate); } /** * 近7日走势 * @return array * @throws \think\Exception */ public function getTransactionTrend() { return (new Trade7days)->getTransactionTrend(); } /** * 商品销售榜 * @return string * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException * @throws \think\exception\DbException */ public function getGoodsRanking() { return (new GoodsRanking)->getGoodsRanking(); } /** * 用户消费榜 * @return string * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException * @throws \think\exception\DbException */ public function geUserExpendRanking() { return (new UserExpendRanking)->getUserExpendRanking(); } }