<?php namespace app\model; use think\Model; class AgentCustomerLog extends Model { public function customer() { return $this->hasOne(Customer::class, 'id','customer_id'); } }