// +---------------------------------------------------------------------- namespace app\common\model; /** * 分类模型 */ class OrderProduct extends Base{ public function book(){ return $this->hasOne('Book', 'id', 'product_id'); } }