Mybatis配置问题--如何动态设置resultTypeMybatis的mapper配置文件如下:
<select id="select" parameterType="BasePO" resultType="BasePO"> <![CDATA[ select * from ${tableName} where pid = ${pid} ]]> </select>