DistrictServiceInterface.php 321 B

12345678910111213141516171819
  1. <?php
  2. namespace App\JsonRpc;
  3. interface DistrictServiceInterface
  4. {
  5. /**
  6. * @param int $id
  7. * @return array
  8. */
  9. public function getDistrictInfo(int $id): array;
  10. /**
  11. * @param string $keyword
  12. * @param int $pid
  13. */
  14. public function getDistrictList(string $keyword,int $pid):array;
  15. }