There is no getter for property named 'offset' in 'class com.baomidou.mybatisplus.extension.plugins.pagination.Page'
时间: 2023-10-08 20:08:59 浏览: 236
使用Mybatis遇到的there is no getter异常
这个错误提示是因为在使用 MyBatis-Plus 分页插件时,Page 类的 offset 属性没有相应的 getter 方法。解决方法是在 Page 类中添加一个名为 getOffset 的方法,返回 offset 属性的值即可,例如:
```
public class Page<T> extends com.baomidou.mybatisplus.extension.plugins.pagination.Page<T> {
// 其他代码...
public long getOffset() {
return this.offset;
}
}
```
然后在使用分页插件时,调用该方法即可。
阅读全文