App_JsonRpc_PublicRpcServiceInterface.rpc-client.proxy.php 534 B

123456789101112131415161718192021
  1. <?php
  2. namespace App\JsonRpc;
  3. class PublicRpcServiceInterface_6b19d6d2af8fe6dab250ee26b9ac3a3b extends \Hyperf\RpcClient\Proxy\AbstractProxyService implements PublicRpcServiceInterface
  4. {
  5. /**
  6. * @param array $data
  7. */
  8. public function getDistrictList(array $data)
  9. {
  10. return $this->client->__call(__FUNCTION__, func_get_args());
  11. }
  12. /**
  13. * @param array $data
  14. */
  15. public function getUserLevelList(array $data)
  16. {
  17. return $this->client->__call(__FUNCTION__, func_get_args());
  18. }
  19. }