@@ -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'];
+}
@@ -0,0 +1,15 @@
+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'];