* 订单流转表 */ namespace app\bestbao\model; use think\Model; class BestbaoProcess extends Model{ protected $autoWriteTimestamp = true; //绑定工程师 public function engineer(){ return $this->hasOne('BestbaoEngineer','id','engineer_id'); } }