mybatis报错Parameter'params' not fund.

1、mybatis报错Parameter'params' not fund.Available parameters ar[param1,page]。

2、接口是这样写的

public int queryCount(@Param("page") CompanyForm page) throws DaoException;

3、实现类是这样引用的

@Override
public int queryCount(CompanyForm page) throws ServiceException {
try {
return companyExtMapper.queryCount(page);
} catch (Exception e) {
throw new ServiceException(e.getMessage(), e);
}
}

3、mapper的xml是这样写的

 <select id="queryCount" resultType="java.lang.Integer" parameterType="classroom.common.form.CompanyForm">
select count(1)  from company     
<include refid="condition" />


4、各位大哥帮我看看,谢谢。

就是没找到parameter的那个page属性嘛

全文搜索下params这个单词,看看哪里是否配置错误了。
ctrl+H,全文搜索快捷键。