CustomerSpecBack.php 289 B

1234567891011121314151617
  1. <?php
  2. declare(strict_types=1);
  3. namespace app\common\model;
  4. use think\Model;
  5. class CustomerSpecBack Extends Model
  6. {
  7. //customer_spec spec_back
  8. //customer
  9. public function customer()
  10. {
  11. return $this->hasOne(Customer::class,'id','customer_id');
  12. }
  13. }