博客园 首页 私信博主 显示目录 隐藏目录 管理

mybatis中if标签用法

1         <if test="grouptype != null ">
2             <if test="grouptype == 0">
3                 and i.ent_id not in (select id from group_type)
4             </if>
5             <if test="grouptype == 1">
6                 and i.ent_id in (select eid from group_type)
7             </if>
8         </if>

mapper传入参数为map,其中的int类型可以这样直接判断。

posted @ 2022-06-14 09:27  MrSharp  阅读(210)  评论(0编辑  收藏  举报