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