Browse Source

public + modZhinengbumen

15313670163 4 months ago
parent
commit
22ff0addc0
2 changed files with 14 additions and 0 deletions
  1. 8 0
      app/JsonRpc/PublicRpcService.php
  2. 6 0
      app/JsonRpc/PublicRpcServiceInterface.php

+ 8 - 0
app/JsonRpc/PublicRpcService.php

@@ -208,4 +208,12 @@ class PublicRpcService extends AbstractServiceClient implements PublicRpcService
     {
     {
         return $this->__request(__FUNCTION__, $data);
         return $this->__request(__FUNCTION__, $data);
     }
     }
+    /**
+     * @param array $data
+     * @return array|mixed
+     */
+    public function modZhinengbumen(array $data)
+    {
+        return $this->__request(__FUNCTION__, $data);
+    }
 }
 }

+ 6 - 0
app/JsonRpc/PublicRpcServiceInterface.php

@@ -126,4 +126,10 @@ interface PublicRpcServiceInterface
      */
      */
     public function delZhinengbumen(array $data);
     public function delZhinengbumen(array $data);
 
 
+     /**
+     * @param array $data
+     * @return mixed
+     */
+    public function modZhinengbumen(array $data);
+
 }
 }