QappAdPosition.php 277 B

1234567891011121314
  1. <?php
  2. namespace App\Modules\Ad\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class QappAdPosition extends Model
  5. {
  6. protected $table = 'qapp_ad_position';
  7. protected $fillable = ['name', 'ident', 'max_num', 'content_type', 'property', 'show_type', 'status'];
  8. }