浏览代码

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

15313670163 1 月之前
父节点
当前提交
bca8930d86
共有 1 个文件被更改,包括 16 次插入0 次删除
  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);
+    }
 }