1
0

CustomerInvalidLog.php 237 B

123456789101112131415161718
  1. <?php
  2. namespace app\model;
  3. use think\Model;
  4. class CustomerInvalidLog extends Model
  5. {
  6. /**
  7. * 绑定客户
  8. */
  9. public function customer()
  10. {
  11. return $this->hasOne(Customer::class, 'id','customer_id');
  12. }
  13. }