DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.atguigu.mybatis.mapper.EmpMapper">
<select id="getEmpByEmpId" resultType="Emp">
select * from t_emp where emp_id = #{empId}
select>
mapper>