InnerDevice.php 400 B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Models;
  3. class InnerDevice extends BaseModel
  4. {
  5. public function workPoint()
  6. {
  7. return $this->belongsTo('App\Models\WorkPoint', 'work_point_id');
  8. }
  9. public function spec()
  10. {
  11. return $this->belongsTo('App\Models\Spec', 'spec_id');
  12. }
  13. public function device()
  14. {
  15. return $this->belongsTo('App\Models\Device', 'device_id');
  16. }
  17. }