resultMap 标签
用法:当从数据库中查询的字段与要返回结果集字段不一致时候,将查询的数据映射为相应的结果集
//从数据库中查询,返回结果为ResultEntity
<resultMap id="BaseResultMap" type="com.shop.entity.ResultEntity">
<id column="ID" jdbcType="BIGINT" property="id" />
<result column="COMMODIY_NAME" jdbcType="VARCHAR" property="Name" />
<result column="COMMODIY_Price" jdbcType="BIGINT" property="Price" />
</resultMap>