Selaa lähdekoodia

三农资讯网

the_bug 5 kuukautta sitten
vanhempi
sitoutus
5cfd66c1bb
1 muutettua tiedostoa jossa 27 lisäystä ja 0 poistoa
  1. 27 0
      app/Model/WebsiteCategory.php

+ 27 - 0
app/Model/WebsiteCategory.php

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