LiuJ 5 дней назад
Родитель
Сommit
5d565b05ad
2 измененных файлов с 544 добавлено и 497 удалено
  1. 517 497
      app/JsonRpc/NewsService.php
  2. 27 0
      app/Model/JobResume.php

Разница между файлами не показана из-за своего большого размера
+ 517 - 497
app/JsonRpc/NewsService.php


+ 27 - 0
app/Model/JobResume.php

@@ -0,0 +1,27 @@
+<?php
+
+declare(strict_types=1);
+
+namespace App\Model;
+
+use Hyperf\DbConnection\Model\Model;
+
+/**
+ */
+class JobResume 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 = [];
+}

Некоторые файлы не были показаны из-за большого количества измененных файлов