resultType
只有输出来的列名和pojo中的属性名一致,才能映射成功
resultMap
使用resultMap完成高级结果输出映射
如果查询出来的列名和pojo中的属性名不一致,通过定义一个resultMap队列名和pojo属性名间做映射关系
<resultMap type="user" id="userResultMap">
<!-- id表示唯一标识
column:查询出来的列名
property:type指定pojo中的属性名
-->
<id column="id_" property="id"/>
<!-- 普通列 -->
<result column="username_" property="username"/>
</resultMap>```