There is no getter for property named 'params' in 'class com.muying.pojo.BusParams'
时间: 2023-11-19 14:46:49 浏览: 116
使用Mybatis遇到的there is no getter异常
There is no getter for property named 'params' in 'class com.muying.pojo.BusParams' 是一个错误提示信息,思是在com.muying.pojo.BusParams类中没有名为'params'的属性的getter方法。这个错误通常出现在你在使用该属性时,没有提供相应的getter方法导致的。要解决这个问题,你需要在com.muying.pojo.BusParams类中添加一个名为getParams的方法来获取该属性的值。
阅读全文