12345678910111213141516171819202122232425262728293031 |
- <?php
- declare (strict_types = 1);
- namespace app\store\controller\analysis;
- use app\store\controller\Controller;
- use app\store\service\analysis\DataSummary as DataSummaryService;
- /**
- * 数据中心-流量概览
- *
- * Class DataSummary
- * @package app\store\controller\analysis
- */
- class DataSummary extends Controller
- {
- /**
- * 今日数据
- *
- * @return array
- */
- public function dailySummary()
- {
- $data = (new DataSummaryService())->dailySummary();
- return $this->renderSuccess($data);
- }
- }
|