mybatis-plus中Constants.WRAPPER的作用

Posted 最小的帆也能远航

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis-plus中Constants.WRAPPER的作用相关的知识,希望对你有一定的参考价值。

List<DeptVo> list = deptMapper.queryList(page,queryWrapper);
@Select("SELECT\\n" +
           "\\tarticle.*, category. NAME category_name\\n" +
           "FROM\\n" +
           "\\tarticle\\n" +
           "LEFT JOIN category ON article.category_id = category.category_id\\n" +
           "${ew.customSqlSegment} ")
List<DeptVo> queryList(Page<DeptVo> page,@Param(Constants.WRAPPER) QueryWrapper wrapper);

进行条件查询,减少了手动传参的复杂度和冗余度。

以上是关于mybatis-plus中Constants.WRAPPER的作用的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot 整合 MyBatis-Plus 入门体验

Mybatis-Plus:了解Mybatis-Plus快速开始(Mybatis + Mybatis-Plus,Mybatis-Plus自动做了属性映射)

mybatis-plus查询时不能映射字段

Mybatis-plus的操作(新增,修改)

mybatis-plus思维导图,让mybatis-plus不再难懂

SpringBoot(48) — MyBatis-plus基本配置