MyBatis(八)联合查询 级联属性封装结果集

(1)接口中编写方法

 public Emp getEmpandDept();

(2)编写Mapper文件

  <resultMap type="com.eu.bean.Emp" id="emp2">
<id column="id" property="id"/>
<result column="last_name" property="lastName"/>
<result column="gender" property="geder"/>
<result column="email" property="email"/>
<result column="id" property="dept.id"/>
<result column="dept_name" property="dept.deptName"/>
</resultMap>  <select id="getEmpandDept" resultMap="emp2">
SELECT *
FROM emp e
JOIN dept d
ON e.d_id=d.id
</select>
上一篇:Swift编程语言(中文版)官方手册翻译(进度8.8%)


下一篇:【XAF问题】多个属性验证RuleUniqueValue