Bläddra i källkod

建立获取静态资源列表、添加静态资源、删除静态资源、获取静态资源详情的接口

15313670163 2 dagar sedan
förälder
incheckning
62e33d913e
1 ändrade filer med 27 tillägg och 0 borttagningar
  1. 27 0
      app/Model/WebsiteImg.php

+ 27 - 0
app/Model/WebsiteImg.php

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