12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <?php
- namespace App\JsonRpc;
- use Hyperf\RpcClient\AbstractServiceClient;
- class FooterService extends AbstractServiceClient implements FooterServiceInterface
- {
-
- protected string $serviceName = 'FooterService';
-
- protected string $protocol = 'jsonrpc-http';
-
- public function getFooterCategory(array $data)
- {
- return $this->__request(__FUNCTION__, $data);
- }
-
- public function addFooterCategory(array $data)
- {
- return $this->__request(__FUNCTION__, $data);
- }
-
- public function upFooterCategory(array $data)
- {
- return $this->__request(__FUNCTION__, $data);
- }
-
- public function delFooterCategory(array $data)
- {
- return $this->__request(__FUNCTION__, $data);
- }
-
- public function getFooterContent(array $data)
- {
- return $this->__request(__FUNCTION__, $data);
- }
-
- public function addFooterContent(array $data)
- {
- return $this->__request(__FUNCTION__, $data);
- }
-
- public function upFooterContent(array $data)
- {
- return $this->__request(__FUNCTION__, $data);
- }
-
- public function delFooterContent(array $data)
- {
- return $this->__request(__FUNCTION__, $data);
- }
- }
|