1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Administrator
- * Date: 2019/4/24
- * Time: 17:35
- */
- namespace App\Transfer;
- use Illuminate\Database\Eloquent\Model;
- class FuwaiJobs extends Model
- {
- protected $connection = "transfer_center";
- protected $table = "qs_fuwai_jobs";
- protected $guarded = [];
- public function companyprofile()
- {
- return $this->belongsTo(CompanyProfile::class, 'company_id');
- }
- public function jobfairContact()
- {
- return $this->hasOne(JobfairJobContact::class, 'pid');
- }
- }
|