mybatis-generator-gui icon indicating copy to clipboard operation
mybatis-generator-gui copied to clipboard

PostgreSQL分页错误

Open HWYWL opened this issue 6 years ago • 0 comments

`@Override public List<PhoneNumberStatus> pageFindPhoneNumberStatus(Long offset, int limit) { PhoneNumberStatusExample example = new PhoneNumberStatusExample(); example.setLimit(limit); example.setOffset(offset);

    return phoneNumberStatusMapper.selectByExample(example);
}`

代码上很简单,然后执行的时候报了不支持的语法,我看生成的时候说是支持的

image

HWYWL avatar Aug 09 '19 08:08 HWYWL