LiuJ 1 week geleden
bovenliggende
commit
d58f271c09
1 gewijzigde bestanden met toevoegingen van 27 en 0 verwijderingen
  1. 27 0
      app/Model/complaint.php

+ 27 - 0
app/Model/complaint.php

@@ -0,0 +1,27 @@
+<?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 = [];
+}