<?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.casic.missiles.mapper.common.SysCommonMapper"> <select id="getDictMapByCode" resultType="java.util.Map"> SELECT name,code from sys_dict where pid=( SELECT id from sys_dict where code=#{code} ) </select> <select id="getDeptMap" resultType="java.util.Map"> SELECT id,SIMPLE_NAME AS "simpleName" from sys_dept </select> </mapper>