소스 검색

Merge branch 'master' of http://git.bjzxtw.org.cn:3000/zxt/news_producer

rkljw 5 일 전
부모
커밋
6ee7d68182
6개의 변경된 파일1086개의 추가작업 그리고 160개의 파일을 삭제
  1. 953 158
      app/JsonRpc/NewsService.php
  2. 50 0
      app/JsonRpc/NewsServiceInterface.php
  3. 27 0
      app/Model/JobHunting copy.php
  4. 27 0
      app/Model/JobHunting.php
  5. 27 0
      app/Model/JobRemuse.php
  6. 2 2
      app/Model/jobHunting.php

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 953 - 158
app/JsonRpc/NewsService.php


+ 50 - 0
app/JsonRpc/NewsServiceInterface.php

@@ -309,4 +309,54 @@ interface NewsServiceInterface
      * @return array
      */
     public function getRecruitingList(array $data):array;
+    /**
+     * @param array $data
+     * @return array
+     */
+    public function getRecruitingInfo(array $data):array;
+    /**
+     * @param array $data
+     * @return array
+     */
+    public function getWebsiteBook(array $data):array;
+    /**
+     * @param array $data
+     * @return array
+     */
+    public function getWebsiteBookList(array $data):array;
+    /**
+     * @param array $data
+     * @return array
+     */
+    public function getWebsiteBookInfo(array $data):array;
+    /**
+     * @param array $data
+     * @return array
+     */
+    public function getWebsiteJob(array $data):array;
+    /**
+     * @param array $data
+     * @return array
+     */
+    public function getWebsiteJobList(array $data):array;
+    /**
+     * @param array $data
+     * @return array
+     */
+    public function getWebsiteJobInfo(array $data):array;
+    /**
+     * @param array $data
+     * @return array
+     */
+    public function getWebsiteJobApply(array $data):array;
+    /**
+     * @param array $data
+     * @return array
+     */
+    public function getWebsiteJobResume(array $data):array;
+    /**
+     * @param array $data
+     * @return array
+     */
+    public function test(array $data):array;
 }

+ 27 - 0
app/Model/JobHunting copy.php

@@ -0,0 +1,27 @@
+<?php
+
+declare(strict_types=1);
+
+namespace App\Model;
+
+use Hyperf\DbConnection\Model\Model;
+
+/**
+ */
+class JobHunting extends Model
+{
+    /**
+     * The table associated with the model.
+     */
+    protected ?string $table = 'job_hunting';
+
+    /**
+     * The attributes that are mass assignable.
+     */
+    protected array $fillable = [];
+
+    /**
+     * The attributes that should be cast to native types.
+     */
+    protected array $casts = [];
+}

+ 27 - 0
app/Model/JobHunting.php

@@ -0,0 +1,27 @@
+<?php
+
+declare(strict_types=1);
+
+namespace App\Model;
+
+use Hyperf\DbConnection\Model\Model;
+
+/**
+ */
+class JobHunting extends Model
+{
+    /**
+     * The table associated with the model.
+     */
+    protected ?string $table = 'job_hunting';
+
+    /**
+     * The attributes that are mass assignable.
+     */
+    protected array $fillable = [];
+
+    /**
+     * The attributes that should be cast to native types.
+     */
+    protected array $casts = [];
+}

+ 27 - 0
app/Model/JobRemuse.php

@@ -0,0 +1,27 @@
+<?php
+
+declare(strict_types=1);
+
+namespace App\Model;
+
+use Hyperf\DbConnection\Model\Model;
+
+/**
+ */
+class JobRemuse extends Model
+{
+    /**
+     * The table associated with the model.
+     */
+    protected ?string $table = 'job_resume';
+
+    /**
+     * The attributes that are mass assignable.
+     */
+    protected array $fillable = [];
+
+    /**
+     * The attributes that should be cast to native types.
+     */
+    protected array $casts = [];
+}

+ 2 - 2
app/Model/jobHunting.php

@@ -8,7 +8,7 @@ use Hyperf\DbConnection\Model\Model;
 
 /**
  */
-class jobHunting extends Model
+class JobHunting extends Model
 {
     /**
      * The table associated with the model.
@@ -18,7 +18,7 @@ class jobHunting extends Model
     /**
      * The attributes that are mass assignable.
      */
-    protected array $guarded = [];
+    protected array $fillable = [];
 
     /**
      * The attributes that should be cast to native types.

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.