QappAdPositionDispatch.php 417 B

123456789101112131415
  1. <?php
  2. namespace App\Modules\Ad\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class QappAdPositionDispatch extends Model
  5. {
  6. protected $table = 'qapp_ad_position_dispatch';
  7. protected $fillable = ['title', 'ad_position_id', 'link_url', 'link_type', 'image_url', 'desc', 'type', 'content_type',
  8. 'priority', 'status', 'filter_condition', 'channel_id', 'qapp_account_id', 'start_time', 'end_time'];
  9. }