在ClassRoomMapper.java中
//数量
int selCRcount(@Param("croom") ClassRoom croom);
在ClassRoomMapper.xml中
<select id="selCRcount" resultType="int">
SELECT count(1) from classroom_info
<trim prefix="where" prefixOverrides="and|or">
<if test="croom.crName!=null"> and cr_name like CONCAT('%',#{croom.crName},'%')</if>
</trim></select>
<if>条件判断中test中 croom.crName 就是 对象.属性,不用带花括号和井号 ,其余的地方要带花括号和井号
如果你使用了@Param这个传参的话,就不用再写paramType的类型了