mybatiscollection关联查询多个参数方式,
分享于 点击 36699 次 点评:160
mybatiscollection关联查询多个参数方式,
目录
- mybatis collection 关联查询多个参数
- 描述
- 查询
- 总结
mybatis collection 关联查询多个参数
column="{evtId=id,businessType=businessType1}"
描述
evtId
是关联查询的参数,businessType
也是。
id
是resultMap
的id,businessType1也是如此
<resultMap id="BaseResultMap" type="com.kingdom.kdum.event.vo.event.EvtToDoListVO"> <id column="id" jdbcType="BIGINT" property="id" /> <result column="businessType1" jdbcType="INTEGER" /> <result column="businessType2" jdbcType="INTEGER" /> <collection property="annexeBeforeList" ofType="com.kingdom.kdum.event.mapper.read.event.EvtAnnexeReadMapper" column="{evtId=id,businessType=businessType1}" select="com.kingdom.kdum.event.mapper.read.event.EvtAnnexeReadMapper.findEventPicByEventIdAndBsType"> </collection> <collection property="annexeAfterList" ofType="com.kingdom.kdum.event.mapper.read.event.EvtAnnexeReadMapper" column="{evtId=id,businessType=businessType2}" select="com.kingdom.kdum.event.mapper.read.event.EvtAnnexeReadMapper.findEventPicByEventIdAndBsType"> </collection> </resultMap>
查询
<select id="findEventDetailInfo" resultMap="BaseResultMap" parameterType="java.lang.Long"> SELECT <include refid="Base_Column_List"/>,1 as businessType1,2 as businessType2 FROM evt_t_event e where e.id = #{id,jdbcType=BIGINT} AND e.db_status = 1 </select>
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持3672js教程。
您可能感兴趣的文章:- Mybatis使用collection标签进行树形结构数据查询时携带外部参数查询
- 详解mybatis中association和collection的column传入多个参数问题
- mybatis利用association或collection传递多参数子查询
用户点评