Forráskód Böngészése

1修改模型名称

FengR 6 napja
szülő
commit
924c32ab81
2 módosított fájl, 31 hozzáadás és 0 törlés
  1. 0 0
      app/Model/Complaint.ph
  2. 31 0
      app/Model/Complaint.php

+ 0 - 0
app/Model/complaint.php → app/Model/Complaint.ph


+ 31 - 0
app/Model/Complaint.php

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