浏览代码

修复bug

LiuJ 5 天之前
父节点
当前提交
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 = [];
+}

部分文件因为文件数量过多而无法显示