12345678910111213141516171819202122232425 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Administrator
- * Date: 2019/4/25
- * Time: 9:54
- */
- namespace App\Transfer;
- use Illuminate\Database\Eloquent\Model;
- class JobfairJobContact extends Model
- {
- protected $connection = "transfer_center";
- protected $table = "qs_aix_jobfair_jobs_contact";
- protected $guarded = [];
- public function jobfairjob()
- {
- return $this->belongsTo(JobfairJob::class, 'pid');
- }
- }
|