App_JsonRpc_LinkServiceInterface.rpc-client.proxy.php 845 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace App\JsonRpc;
  3. class LinkServiceInterface_d8f22ae5023232e70650b2dfcba3359c extends \Hyperf\RpcClient\Proxy\AbstractProxyService implements LinkServiceInterface
  4. {
  5. /**
  6. * @param array $data
  7. */
  8. public function getLinkList(array $data)
  9. {
  10. return $this->client->__call(__FUNCTION__, func_get_args());
  11. }
  12. /**
  13. * @param array $data
  14. */
  15. public function createLink(array $data)
  16. {
  17. return $this->client->__call(__FUNCTION__, func_get_args());
  18. }
  19. /**
  20. * @param array $data
  21. */
  22. public function updateLink(array $data)
  23. {
  24. return $this->client->__call(__FUNCTION__, func_get_args());
  25. }
  26. /**
  27. * @param array $data
  28. */
  29. public function delLink(array $data)
  30. {
  31. return $this->client->__call(__FUNCTION__, func_get_args());
  32. }
  33. }