alias('a')->join('product b', 'a.coll_id=b.id', 'LEFT'); if ($where) { $this->where($where); } if ($order) { $this->order($order); } if ($field) { $this->field($field); } if ($limit) { $this->limit($limit); } $result = $this->paginate($limit); return $result; } }