123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?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 getOneFooterContent(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);
- }
- }
|