CompanyEmployee.php 279 B

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