AgentCustomerLog.php 196 B

123456789101112
  1. <?php
  2. namespace app\model;
  3. use think\Model;
  4. class AgentCustomerLog extends Model
  5. {
  6. public function customer()
  7. {
  8. return $this->hasOne(Customer::class, 'id','customer_id');
  9. }
  10. }