UserServiceInterface.php 315 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Author: lf
  4. * Blog: https://blog.feehi.com
  5. * Email: job@feehi.com
  6. * Created at: 2020-01-29 16:54
  7. */
  8. namespace common\services;
  9. interface UserServiceInterface extends ServiceInterface
  10. {
  11. const ServiceName = "userService";
  12. public function getUserCountByPeriod($startAt=null, $endAt=null);
  13. }