Files

26 lines
776 B
XML
Raw Normal View History

2023-05-10 17:17:26 +08:00
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.qiaoba.module.system.mapper.SysPostMapper">
2023-05-16 17:28:43 +08:00
<select id="checkPostNameUnique" resultType="string">
select post_id from sys_post
2023-05-10 17:17:26 +08:00
where post_name = #{postName}
<if test="postId != null and postId != ''">
and post_id != #{postId}
</if>
limit 1
</select>
2023-05-16 17:28:43 +08:00
<select id="checkPostCodeUnique" resultType="string">
select post_id from sys_post
2023-05-10 17:17:26 +08:00
where post_code = #{postCode}
<if test="postId != null and postId != ''">
and post_id != #{postId}
</if>
limit 1
</select>
</mapper>