소스 검색

修复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 = [];
+}

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