您的当前位置:首页正文

mybatis-plus mapper.xml 配合queryWrapper写法

2024-11-29 来源:个人技术集锦

1.mapper中的接口这么写:
IPage selectPosts(Page page, @Param(Constants.WRAPPER) QueryWrapper wrapper);

2.xml中, ${ew.customSqlSegment}就是querywrapper的条件

select * from user_collection ${ew.customSqlSegment}

显示全文