CneterRoleMenuMapper.xml
920 Bytes
<?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="org.nafmii.webcenter.user.dao.CneterRoleMenuMapper">
<!-- 通用查询映射结果 -->
<resultMap id="BaseResultMap" type="org.nafmii.webcenter.user.entity.CneterRoleMenuPO">
<id column="ID" property="id" />
<result column="ROLE_ID" property="roleId" />
<result column="MENU_ID" property="menuId" />
<result column="IS_ENABLE" property="isEnable" />
</resultMap>
<!-- 通用查询结果列 -->
<sql id="Base_Column_List">
ID, ROLE_ID, MENU_ID, IS_ENABLE
</sql>
<select id="selectByRole" parameterType="map" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"></include>
from CNETER_ROLE_MENU
where IS_ENABLE = 0
</select>
</mapper>