解决方法
一、在sql查询语句中用起别名的方式使列名与封装数据的实体类的属性名一致
缺点:过程繁琐
二、resultMap
<resultMap id="brandResultMap" type="Brand">
<result column="brand_name" property="brandName"/> <!--列名与封装实体类的对应属性形成映射-->
<result column="company_name" property="companyName"/>
</resultMap>
<!--resultMap方式-->
<select id="selectAll" resultMap="brandResultMap"> <!-- resultType为封装数据的pojo实体类,或者换位resultMap id为mapper接口的抽象方法-->
select
*
from tb_brand;
</select>