a):列名指定别名,别名为Java的属性名
<select id="selectPet" resultType="Pet">
select id,name(列名) names(指定别名) from pet where id = #{id}
</select>
b):设置结果映射类型
<select id="selectPet" resultMap="PetMapper">
select * from pet where id = #{id}
</select>
<resultMap type="Pet" id="PetMapper
column为数据库中的列名,properties为对应实体类的属性名
<id column="id" property="id"/>
<result column="name" property="names"/>
</resultMap>
column:对应数据库中表的列名,column对应Java属性名