App_JsonRpc_PublicRpcServiceInterface.rpc-client.proxy.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. namespace App\JsonRpc;
  3. class PublicRpcServiceInterface_9fcf97a1b8c9cfca559f94bd44a73b1d 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. /**
  20. * @param array $data
  21. */
  22. public function addUserLevel(array $data)
  23. {
  24. return $this->client->__call(__FUNCTION__, func_get_args());
  25. }
  26. /**
  27. * @param array $data
  28. */
  29. public function delUserLevel(array $data)
  30. {
  31. return $this->client->__call(__FUNCTION__, func_get_args());
  32. }
  33. /**
  34. * @param array $data
  35. */
  36. public function updateUserLevel(array $data)
  37. {
  38. return $this->client->__call(__FUNCTION__, func_get_args());
  39. }
  40. }