DashboardInterface.php 440 B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Repositories\Contracts;
  3. /**
  4. * 仪表盘统计接口
  5. *
  6. * @author huangxiaodong
  7. *
  8. */
  9. interface DashboardInterface
  10. {
  11. /**
  12. * 获取时间段内注册用户统计
  13. *
  14. * @param string $startTime 开始时间 2024-01-01
  15. * @param string $endTime 结束时间 2024-01-30
  16. *
  17. *
  18. */
  19. public function getPeriodRegisiter($startTime, $endTime, $dateType);
  20. }