AppointmentTicket.php 266 B

12345678910111213141516
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. class AppointmentTicket extends Model
  5. {
  6. protected $autoWriteTimestamp = false;
  7. //关联专家
  8. public function specialist()
  9. {
  10. return $this->belongsTo('Specialist', 'provider_id');
  11. }
  12. }