Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 543 Bytes

File metadata and controls

30 lines (20 loc) · 543 Bytes

一对多 collection 标签

<resultMap>
    <result property="" column=""/>
    
    <collection property="" ofType="" column="">
        <id property="" column="" jdbcType=""/>
		<result property="" column="" jdbcType=""/>
    </collection>
</resultMap>

多对一 association 标签

<resultMap>
    <result property="" column=""/>
    
    <association property="" ofType="" column="">
        <id property="" column="" jdbcType=""/>
		<result property="" column="" jdbcType=""/>
    </association>
</resultMap>