mybatis-plus collection association
1、collection
a、分页
<collection property="roomGraphVoList" ofType="com.atguigu.lease.web.app.vo.graph.GraphVo" select="selectGraphVoByRoomId" column="room_id"/>
b、不分页
<collection property="roomGraphVoList" ofType="com.atguigu.lease.web.app.vo.graph.GraphVo"/>
2、association
<association property="apartmentInfo" javaType="com.atguigu.lease.model.entity.ApartmentInfo" autoMapping="true"> <id property="id" column="apartment_id"/> <result property="name" column="apartment_name"/> </association>

浙公网安备 33010602011771号