<resultMap>: 设置自定义映射
type:要处理的类型
id:唯一标识
<id/>:处理主键的映射关系
<result/>:处理普通字段的映射关系 column:字段名,property:属性名
<resultMap type="Emp" id="empDeptResultMap">
<id column="id" property="id"/>
<result column="emp_name" property="empName" />
<result column="age" property="age" />
<result column="sex" property="sex" />`
1、级联属性赋值
<result column="dept_id" property="dept.id">
<result column="dept_name" property="dept.deptName"/>
2、association
<association property="dept" javaType="Dept">
<id column="dept_id" property="id"/>
<result column="dept_name" property="deptName"/>
</association>