CategoryServiceInterface.php 409 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Author: lf
  4. * Blog: https://blog.feehi.com
  5. * Email: job@feehi.com
  6. * Created at: 2020-01-30 14:21
  7. */
  8. namespace common\services;
  9. interface CategoryServiceInterface extends ServiceInterface
  10. {
  11. const ServiceName = "categoryService";
  12. public function getCategoryList();
  13. public function getLevelCategoriesWithPrefixLevelCharacters();
  14. public function getCategoriesRelativeUrl();
  15. }