App_JsonRpc_WebsiteServiceInterface.rpc-client.proxy.php 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?php
  2. namespace App\JsonRpc;
  3. class WebsiteServiceInterface_159524aa485875b0c402c7e3193d925b 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. /**
  49. * @param array $data
  50. * @return mixed
  51. */
  52. public function getWebsiteColumn(array $data)
  53. {
  54. return $this->client->__call(__FUNCTION__, func_get_args());
  55. }
  56. /**
  57. * @param string $keyword
  58. * @param int $page
  59. * @param int $pageSize
  60. */
  61. public function getWebsiteColumnList(string $keyword, int $page, int $pageSize)
  62. {
  63. return $this->client->__call(__FUNCTION__, func_get_args());
  64. }
  65. /**
  66. * @param array $data
  67. * @return array
  68. */
  69. public function createWebsiteColumn(array $data)
  70. {
  71. return $this->client->__call(__FUNCTION__, func_get_args());
  72. }
  73. /**
  74. * @param int $id
  75. * @param array $data
  76. * @return array
  77. */
  78. public function updateWebsiteColumn(int $id, array $data)
  79. {
  80. return $this->client->__call(__FUNCTION__, func_get_args());
  81. }
  82. /**
  83. * @param int $id
  84. * @return array
  85. */
  86. public function delWebsiteColumn(int $id)
  87. {
  88. return $this->client->__call(__FUNCTION__, func_get_args());
  89. }
  90. }