Skip to content

Instantly share code, notes, and snippets.

@codethereforam
Created October 28, 2019 11:56
Show Gist options
  • Save codethereforam/94c949404a3b0aac5427a09735cc6f0d to your computer and use it in GitHub Desktop.
Save codethereforam/94c949404a3b0aac5427a09735cc6f0d to your computer and use it in GitHub Desktop.
Mybatis查询是否存在
Integer exist(Map<String, Object> paramMap);
<select id="exist" parameterType="Map" resultType="Integer">
select 1 from foo_table
<include refid="conditions"/>
limit 1
</select>
public boolean exist(Map<String, Object> paramMap) {
return FooMapper.exist(paramMap) != null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment