AppointmentTicket.php 387 B

1234567891011121314151617181920212223
  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. //关联放号配置
  13. public function appointment()
  14. {
  15. return $this->belongsTo('Appointment');
  16. }
  17. }