<?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"><mappernamespace="com.zhongzhi.dao.PermissionsDAO"><!-- 通用查询映射结果 --><resultMapid="BaseResultMap"type="com.zhongzhi.model.PermissionsDO"><idcolumn="id"property="id"/><resultcolumn="parent_id"property="parentId"/><resultcolumn="name"property="name"/><resultcolumn="create_time"property="createTime"/><resultcolumn="update_time"property="updateTime"/><resultcolumn="delete_time"property="deleteTime"/></resultMap><!-- 通用查询结果列 --><sqlid="Base_Column_List"> id, parent_id, name, create_time, update_time, delete_time</sql><selectid="getPermissionById"resultType="com.zhongzhi.vo.permission.PermissionVO"> select p.* from permissions p left join administer_permission ap on ap.permission_id = p.id where ap.administer_id = #{id} and p.delete_time is null and p.delete_time is null</select></mapper>