mybatis-plus自定义sql语句报Parameter ‘ew’ not found
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter ‘ew’ not found. Available parameters are [queryWrapper, pageParam, param1, param2]…
${ew.customSqlSegment} 会直接在前面添加 where Select(select * from a ${ew.customSqlSegment})List<a> getA(Param(Constants.WRAPPER)QueryWrapper queryWrapper)${ew.sqlSegment} 就只有条件语句 Select(select * from a where ${ew.sqlSegment}&#x…