Explorar el Código

完成获取、添加职位初步完成

15313670163 hace 1 mes
padre
commit
bca8930d86
Se han modificado 1 ficheros con 16 adiciones y 0 borrados
  1. 16 0
      app/JsonRpc/NewsService.php

+ 16 - 0
app/JsonRpc/NewsService.php

@@ -221,4 +221,20 @@ class NewsService extends AbstractServiceClient implements NewsServiceInterface
     {
         return $this->__request(__FUNCTION__, $data);
     }
+    /**
+     * @param array $data
+     * @return mixed
+     */
+    public function getJobRecruitingList(array $data)
+    {
+        return $this->__request(__FUNCTION__, $data);
+    }
+    /**
+     * @param array $data
+     * @return mixed
+     */
+    public function addRecruit(array $data)
+    {
+        return $this->__request(__FUNCTION__, $data);
+    }
 }