library-picturebook-activity/java-backend/src/main/resources/mapper/RoleMapper.xml

14 lines
448 B
XML
Raw Normal View History

<?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.lesingle.creation.mapper.RoleMapper">
<!-- 根据角色编码查询角色 -->
<select id="selectByCode" resultType="com.lesingle.creation.entity.Role">
SELECT *
FROM t_role
WHERE code = #{code}
AND deleted = 0
</select>
</mapper>