xml文件的一对多查询

2021/9/2 23:36:53

本文主要是介绍xml文件的一对多查询,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

    <resultMap type="com.medaxis.hpams.target.domain.AO.MpTargetAO" id="MpTargetResult">
        <result property="id"    column="id"    />
        <result property="targetNum"    column="target_num"    />
        <collection property="files" column="attachment"  javaType="ArrayList" ofType="string" select="getFileList"/>
    </resultMap>

    <sql id="selectMpTargetVo">
        select id, target_num, target_name, target_property, unit, recognition_degree, target_guide, hope_guide, display_form, compute_type, target_definition, target_meaning, attachment, delete_flag from mp_target
    </sql>

    <select id="getFileList" resultType="string" parameterType="int">
        select name  from mp_file_info  where common_id=#{attachment}
    </select>

oftype:List的实体类
javaType: 属性类型



这篇关于xml文件的一对多查询的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程