方案一:
方法二:使用ResultMap标签解决
<!-- 使用ResulstMap -->
<select id="seeAll" resultMap="ResultMap">
select * from Employee
</select>
<resultMap type="Employee" id="ResultMap">
<!-- id标签定义主键(标识列) -->
<id property="eid" column="id" />
<!-- result标签定义除了标识列外的其他字段 -->
<result property="ename" column="name" />
</resultMap><result property="saddr" column="addr" />