PublicRpcServiceInterface.php 256 B

12345678910111213141516
  1. <?php
  2. namespace App\JsonRpc;
  3. interface PublicRpcServiceInterface
  4. {
  5. /**
  6. * @param array $data
  7. */
  8. public function getDistrictList(array $data);
  9. /**
  10. * @param array $data
  11. */
  12. public function getUserLevelList(array $data);
  13. }