TeamDocter.php 348 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: zilongs
  5. * Date: 20-11-2
  6. * Time: 上午11:18
  7. */
  8. namespace App\Models;
  9. class TeamDocter extends BaseModel
  10. {
  11. public function DocterOrganization(){
  12. return $this->belongsTo(DocterOrganization::class);
  13. }
  14. public function docter(){
  15. return $this->belongsTo(Docter::class);
  16. }
  17. }