CompanyRecruit.php 277 B

1234567891011121314
  1. <?php
  2. namespace App\Models\DouyinRecruit;
  3. use Illuminate\Database\Eloquent\Model;
  4. class CompanyRecruit extends Model
  5. {
  6. public $timestamps = false;
  7. protected $table = 'cmf_company_recruit';
  8. protected $connection = 'douyin_recruit';
  9. protected $guarded = [];
  10. }