LiuJ 2 天之前
父節點
當前提交
816edc8918
共有 3 個文件被更改,包括 25 次插入18 次删除
  1. 5 1
      app/JsonRpc/NewsService.php
  2. 18 17
      app/JsonRpc/NewsServiceInterface.php
  3. 2 0
      config/api/news.php

+ 5 - 1
app/JsonRpc/NewsService.php

@@ -179,6 +179,10 @@ class NewsService extends AbstractServiceClient implements NewsServiceInterface
     {
         return $this->__request(__FUNCTION__, $data);
     }
+    public function getJobHuntingApply(array $data)
+    {
+        return $this->__request(__FUNCTION__, $data);
+    }
     public function getJobHuntingInfo(array $data)
     {
         return $this->__request(__FUNCTION__, $data);
@@ -301,7 +305,7 @@ class NewsService extends AbstractServiceClient implements NewsServiceInterface
     {
         return $this->__request(__FUNCTION__, $data);
     }
-     /**
+    /**
      * @param array $data
      * @return mixed
      */

+ 18 - 17
app/JsonRpc/NewsServiceInterface.php

@@ -132,26 +132,26 @@ interface NewsServiceInterface
    * @return mixed
    */
   public function getWebsiteArticles(array $data);
-    /**
-     * @param array $data
-     * @return mixed
-     */
-    public function getWebsiteshop(array $data);
-    /*
+  /**
+   * @param array $data
+   * @return mixed
+   */
+  public function getWebsiteshop(array $data);
+  /*
     * @param array $data
     * @return mixed
     */
-    public function getWebsiteshopCat(array $data);
-    /**
-     * @param array $data
-     * @return mixed
-     */
-    public function getWebsiteshopList(array $data);
-    /**
-     * @param array $data
-     * @return mixed
-     */
-    public function getWebsiteshopInfo(array $data);
+  public function getWebsiteshopCat(array $data);
+  /**
+   * @param array $data
+   * @return mixed
+   */
+  public function getWebsiteshopList(array $data);
+  /**
+   * @param array $data
+   * @return mixed
+   */
+  public function getWebsiteshopInfo(array $data);
 
   /**
    * @param array $data
@@ -168,6 +168,7 @@ interface NewsServiceInterface
   //20250226  产品列表
   //20250306  求职信息
   public function getJobHuntingList(array $data);
+  public function getJobHuntingApply(array $data);
   public function getJobHuntingInfo(array $data);
   public function addJobHunting(array $data);
   public function updateJobHunting(array $data);

+ 2 - 0
config/api/news.php

@@ -64,6 +64,8 @@ Router::addGroup(
         Router::post('/updateJobHunting', [NewsController::class, 'updateJobHunting']);
         Router::post('/delJobHunting', [NewsController::class, 'delJobHunting']);
         Router::post('/getJobHuntingData', [NewsController::class, 'getJobHuntingData']);
+        //人才库
+        Router::post('/getJobHuntingApply', [NewsController::class, 'getJobHuntingApply']);
         // 审核
         Router::post('/updateJobHuntingStatus', [NewsController::class, 'updateJobHuntingStatus']);
         //20250306  求职信息