FriendlyLinkServiceInterface.php 380 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Author: lf
  4. * Blog: https://blog.feehi.com
  5. * Email: job@feehi.com
  6. * Created at: 2020-01-23 09:38
  7. */
  8. namespace common\services;
  9. interface FriendlyLinkServiceInterface extends ServiceInterface {
  10. const ServiceName = "friendlyLinkService";
  11. public function getFriendlyLinks();
  12. public function getFriendlyLinkCountByPeriod($startAt=null, $endAt=null);
  13. }