There is no getter for property named 'supplierId' in 'class com.ruoyi.project.business.domain.OrderShop'
时间: 2024-05-17 16:12:48 浏览: 90
Mybatis单个参数的if判断报异常There is no getter for property named 'xxx' in 'class java.lang.Integer'的解决方案
这个错误提示表示在Java类`com.ruoyi.project.business.domain.OrderShop`中没有名为`supplierId`的属性的getter方法。可能是在使用`supplierId`属性时,没有在类中定义该属性或者没有提供getter方法。需要检查代码中是否正确定义了该属性和相应的getter方法。
阅读全文