Sfoglia il codice sorgente

public + modZhinengbumen

15313670163 4 mesi fa
parent
commit
22ff0addc0

+ 8 - 0
app/JsonRpc/PublicRpcService.php

@@ -208,4 +208,12 @@ class PublicRpcService extends AbstractServiceClient implements PublicRpcService
     {
         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);
 
+     /**
+     * @param array $data
+     * @return mixed
+     */
+    public function modZhinengbumen(array $data);
+
 }