在mapper中配置resultMap
<resultMap id="BlogResultMap" type="Blog">
<!--主键-->
<id property="bid" column="b_id"/>
<!--普通字段-->
<result property="btitle" column="b_title"/>
<result property="bcontent" column="b_content"/>
<result property="createTime" column="create_time"/>
</resultMap>
查询mapper中直接如下使用