31 lines
892 B
XML
31 lines
892 B
XML
<?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.imyeyu.api.modules.user.mapper.PermissionMapper">
|
|
<select id="selectByIdList" resultType="com.imyeyu.api.modules.user.entity.Permission">
|
|
SELECT
|
|
*
|
|
FROM `permission`
|
|
WHERE
|
|
TRUE
|
|
<if test="idList != null and !idList.isEmpty()">
|
|
AND `id` IN
|
|
<foreach collection="idList" item="item" separator="," open="(" close=")">
|
|
#{item}
|
|
</foreach>
|
|
</if>
|
|
<if test="idList == null or idList.isEmpty()">
|
|
AND FALSE
|
|
</if>
|
|
AND `deleted_at` IS NULL
|
|
</select>
|
|
<select id="selectByModuleCode" resultType="com.imyeyu.api.modules.user.entity.Permission">
|
|
SELECT
|
|
*
|
|
FROM `permission`
|
|
WHERE
|
|
`module_code` = #{moduleCode}
|
|
AND `deleted_at` IS NULL
|
|
ORDER BY `code`
|
|
</select>
|
|
</mapper>
|