WeworkCompany.php 186 B

123456789101112
  1. <?php
  2. namespace app\model;
  3. use think\Model;
  4. class WeworkCompany extends Model
  5. {
  6. public function company(){
  7. return $this->hasOne('Company','wework_company', 'id');
  8. }
  9. }