Browse Source

修改广告位管理-修改广告的接口

15313670163 4 ngày trước cách đây
mục cha
commit
fbfbb473cd
1 tập tin đã thay đổi với 39 bổ sung0 xóa
  1. 39 0
      app/Model/WebsiteTemplate.php

+ 39 - 0
app/Model/WebsiteTemplate.php

@@ -0,0 +1,39 @@
+<?php
+
+declare(strict_types=1);
+
+namespace App\Model;
+
+use Hyperf\DbConnection\Model\Model;
+
+/**
+ */
+class WebsiteTemplate extends Model
+{
+    /**
+     * The table associated with the model.
+     */
+    protected ?string $table = 'website_template';
+
+    /**
+     * The attributes that are mass assignable.
+     */
+    protected array $fillable = [
+        'website_id',
+        'typeid',
+        'status',
+        'name',
+        'thumb',
+        'introduce',
+        'ad_tag',
+        'code',
+        'price',
+        'ad_size_id',
+        
+    ];
+
+    /**
+     * The attributes that should be cast to native types.
+     */
+    protected array $casts = [];
+}