MyBatis-Plus--在xml中使用wrapper的方法

原文网址:MyBatis-Plus--在xml中使用wrapper的方法_IT利刃出鞘的博客-CSDN博客

简介

本文介绍MyBatis-Plus如何在xml中使用wrapper。

Service

QueryWrapper wrapper = new QueryWrapper();
wrapper.eq("r.room_id", vo.getRoomId());
wrapper.in("r.meet_date", dates);

List list = reserveRoomService.query(wrapper);

Mapper

IPage query(Page page, @Param("ew) Wrapper wrapper);

XML


你可能感兴趣的:(MyBatis-Plus,mybatis,xml,java)