Wang Chen 4 年之前
父节点
当前提交
210ddb7635
共有 2 个文件被更改,包括 29 次插入0 次删除
  1. 14 0
      app/Modules/Ad/Models/QappAdPosition.php
  2. 15 0
      app/Modules/Ad/Models/QappAdPositionDispatch.php

+ 14 - 0
app/Modules/Ad/Models/QappAdPosition.php

@@ -0,0 +1,14 @@
+<?php
+
+
+namespace App\Modules\Ad\Models;
+
+
+use Illuminate\Database\Eloquent\Model;
+
+class QappAdPosition extends Model
+{
+    protected $table = 'qapp_ad_position';
+    protected $fillable = ['name', 'ident', 'max_num', 'content_type', 'property', 'show_type', 'status'];
+    
+}

+ 15 - 0
app/Modules/Ad/Models/QappAdPositionDispatch.php

@@ -0,0 +1,15 @@
+<?php
+
+
+namespace App\Modules\Ad\Models;
+
+
+use Illuminate\Database\Eloquent\Model;
+
+class QappAdPositionDispatch extends Model
+{
+    protected $table = 'qapp_ad_position_dispatch';
+    protected $fillable = ['title', 'ad_position_id', 'link_url', 'link_type', 'image_url', 'desc', 'type', 'content_type',
+        'priority', 'status', 'filter_condition', 'channel_id', 'qapp_account_id', 'start_time', 'end_time'];
+
+}