mybatis遇到的问题

org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'paymentType' in 'class java.lang.Integer'

我的代码是这么写的,调用的时候之传入了这一个参数,这个参数的非空判断是在mapper里面做的(业务需求)


最后查证得知


image.png

这里应该使用mybatis的内置对象"_parameter",而且


image.png

要在#传参里面加上类型.

你可能感兴趣的:(mybatis遇到的问题)