Mybatis-plus selectByMap条件查询

List selectByMap(@Param("cm") Map columnMap);

如上,可以看到BaseMapper中的selectByMap接口需要的参数是Map,故
Map map=new HashMap<>();
map.put("列名1",约束1);//条件1
map.put("列名2",约束2);//条件2
xxxMapper.selectByMap(map);

相当于sql语句SELECT * FROM 表名 WHERE 列名1= ? AND 列名2= ?

Mybatis-plus selectByMap条件查询最先出现在Python成神之路

版权声明:
作者:lichengxin
链接:https://www.techfm.club/p/3969.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>