美文网首页
mybatis-plus的collection、associat

mybatis-plus的collection、associat

作者: 一名程序猿 | 来源:发表于2020-09-04 11:26 被阅读0次

常规示例:

<resultMap type="com.zxsl.air.business.entity.dto.PsControlo3noticeDto" id="psControlo3noticeDto">
        <id column="id" property="id"/>
        <collection  property="fileInfoDtos" select="getFileInfoDtos" column="id"
                     ofType="com.zxsl.air.platform.upload.dto.FileInfoDto" javaType="java.util.ArrayList">
        </collection >
        <collection  property="psControlo3industrys" select="getpsControlo3industrys" column="id"
                     ofType="com.zxsl.air.business.entity.dto.PsControlo3industryDto" javaType="java.util.ArrayList">
        </collection >
    </resultMap>

有些时候需要传递往collection、association 标签传递多参数,可通过如下方式:
修改column属性如column="{id=idvalue,industry=industryvalue,name=namevalue}"

<resultMap type="com.zxsl.air.business.entity.dto.PsControlo3noticeDto" id="psControlo3noticeDto">
        <id column="id" property="id"/>
        <collection  property="fileInfoDtos" select="getFileInfoDtos" column="id"
                     ofType="com.zxsl.air.platform.upload.dto.FileInfoDto" javaType="java.util.ArrayList">
        </collection >
        <collection  property="psControlo3industrys" select="getpsControlo3industrys" column="{id=id,industry=industry,name=name}"
                     ofType="com.zxsl.air.business.entity.dto.PsControlo3industryDto" javaType="java.util.ArrayList">
        </collection >
    </resultMap>

其中idvalue、industryvalue、namevalue可不声明<id column="id" property="id"/>,i但是idvalue、industryvalue、namevalue必须是sql查询的返回列,也可以是某些常量列。

<select id="getList" parameterType="com.zxsl.air.business.controller.param.QueryPsControlo3noticeParam" resultMap="psControlo3noticeDto">
select distinct pcn.*,pci.controlO3Notice_id,
queryPsControlo3noticeParam.industry as industry      
from ps_controlo3notice pcn
<select>

本文笔记到此结束。

相关文章

网友评论

      本文标题:mybatis-plus的collection、associat

      本文链接:https://www.haomeiwen.com/subject/islzsktx.html