You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
628 B
XML
16 lines
628 B
XML
6 years ago
|
<?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.kiisoo.ic.system.mapper.PrivilageUserDOMapper">
|
||
|
|
||
|
<select id="selectUserInfoAndRoleInfo" resultType="com.kiisoo.ic.system.bean.PrivilageUserBean">
|
||
|
select t1.id ,t1.name, t1.mobil,t3.name as roleName, t3.id as roleId, t3.code as roleCode
|
||
|
from privilage_user t1, privilage_user_role t2, privilage_role t3
|
||
|
where t1.id = t2.user_id
|
||
|
and t2.role_id = t3.id
|
||
|
and t1.id = #{userId}
|
||
|
limit 1
|
||
|
</select>
|
||
|
|
||
|
|
||
|
</mapper>
|