1,当我们需要将表中的两列(两列是唯一的)映射成Map?
ibatis中配置文件:
<select id="PayRecord.selectMap" resultClass="java.util.HashMap">
select * from WXSRMPAYRECORD
</select>
DAO中java代码:
这里我们知道映射出来的字段为大写,这里可以用ResultMap来解决
public Map test() throws Exception {
return this.queryForMap("PayRecord.selectMap", null, "OPENID", "ORDERSN");
}