<?php namespace app\common\model; use think\Model; // 订单评论表 class OrderComment extends Model { public function user() { return $this->belongsTo('User','user_id','id')->field('id,name,headimg'); } }