1.先写包装类,包装类中的属性是其他表或者实体类
2.在配置文件中,配置
<resultMap type="com.entity.QueryVo" id="queryVo">
<association property="ccdata" resultMap="BaseResultMapCcdata" />
<association property="bindTable" resultMap="BaseResultMapBindTable"/>
<association property="company" resultMap="BaseResultMapCompany"/>
</resultMap>
<select id="getInforById" parameterType="java.lang.String"
resultMap="queryVo">
多表查询SQL语句
</select>