123456789101112131415161718192021 |
- <?php
- namespace App\Repositories\Contracts;
- /**
- * 仪表盘统计接口
- *
- * @author huangxiaodong
- *
- */
- interface DashboardInterface
- {
- /**
- * 获取时间段内注册用户统计
- *
- * @param string $startTime 开始时间 2024-01-01
- * @param string $endTime 结束时间 2024-01-30
- *
- *
- */
- public function getPeriodRegisiter($startTime, $endTime, $dateType);
- }
|