mybatis plus 单表多条件查询基础方法

import:
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
type为实体类
like(判断条件,实体类中属性,变量)其他方法也如此
QueryWrapper queryWrapper2 = new QueryWrapper<>();
queryWrapper2.lambda()
        .like(!StringUtils.isEmpty(name),Type::getName,name);
List types = this.typeService.list(queryWrapper2);

 

你可能感兴趣的:(mybatis plus 单表多条件查询基础方法)