mybatis-plus之Wrapper

boolean XXX(Wrapper queryWrapper);

 在学习mybatis-plus中的curd插件时,类似方法中遇到Wrapper,奈何本人小白一只,百度也没能看明白这个地方到底该咋写。某一思路:请教前辈后豁然开朗。(此处不一定非得传值为id,随意)

以remove为例:

 @PostMapping("/remove")
 public boolean remove(@RequestBody String id ) {
     AWrapper wrapper = new AWrapper();
     wrapper.eq("id", id);
     return teamService.remove(wrapper);
 }

 

再另外定义一个类AWrapper

package com.my.project.wrapper;

importcom.baomidou.mybatisplus.core.conditions.query.QueryWrapper;

public class AWrapper extends QueryWrapper{

 

}

 

你可能感兴趣的:(MyBatis-Plus)