App_JsonRpc_WebsiteServiceInterface.rpc-client.proxy.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. namespace App\JsonRpc;
  3. class WebsiteServiceInterface_13e8e98f8ec7afd8f973c30662b13598 extends \Hyperf\RpcClient\Proxy\AbstractProxyService implements WebsiteServiceInterface
  4. {
  5. /**
  6. * @param string $keyword
  7. * @param int $page
  8. * @param int $pageSize
  9. */
  10. public function getWebsitetList(string $keyword, int $page, int $pageSize)
  11. {
  12. return $this->client->__call(__FUNCTION__, func_get_args());
  13. }
  14. /**
  15. * @param array $data
  16. * @return array
  17. */
  18. public function createWebsite(array $data)
  19. {
  20. return $this->client->__call(__FUNCTION__, func_get_args());
  21. }
  22. /**
  23. * @param int $id
  24. * @param array $data
  25. * @return array
  26. */
  27. public function updateWebsite(int $id, array $data)
  28. {
  29. return $this->client->__call(__FUNCTION__, func_get_args());
  30. }
  31. /**
  32. * @param int $id
  33. * @return array
  34. */
  35. public function delWebsite(int $id)
  36. {
  37. return $this->client->__call(__FUNCTION__, func_get_args());
  38. }
  39. /**
  40. * 查询网站信息
  41. * @param int $id
  42. * @return array
  43. */
  44. public function getWebsiteInfo(int $id)
  45. {
  46. return $this->client->__call(__FUNCTION__, func_get_args());
  47. }
  48. }