注意:
1.resultMap里的column就是SQL里的出参字段。如果你起了别名,resultMap也必须是这个别名
2.你可以试试去掉resultMap,然后DTO里的字段与别名对应
<!--返回体系-->
<!--<resultMap id="userResultMap" type="com.mrd.pojo.vo.GroupUserDemoFuVO">
<id property="gid" column="gid" jdbcType="CHAR" />
<result property="flockGroupId" column="flockGroupId" jdbcType="CHAR"/>
<collection property="groupUserDemoVOList" ofType="com.mrd.pojo.vo.GroupUserDemoVO">
<result property="faceImg" column="faceImg" jdbcType="CHAR"/>
</collection>
</resultMap>-->
来源:CSDN
作者:橙子Xx
链接:https://blog.csdn.net/qq_39505065/article/details/90031401