修改前
<select id="getGroupId" parameterType="java.lang.Long" resultType="com.capinfo.weibo.system.entity.ColumnGroup"> SELECT * from common_columngroup c <where> <if test="accountId!=null"> c.accountId=#{parameter} and c.type=2 </if> </where> </select>
如果传入类型为Long类型,则参数需统一修改为[_parameter],修改后的sql语句如下(不管你的参数是什么,都要改成"_parameter")
<select id="getGroupId" parameterType="java.lang.Long" resultType="com.capinfo.weibo.system.entity.ColumnGroup"> SELECT * from common_columngroup c <where> <if test="accountId!=null"> c.accountId=#{_parameter} and c.type=2 </if> </where> </select>