123456789101112131415 |
- <?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'];
- }
|