mybatis高级映射之collection

collection

<resultMap id="dutyInfo" type="com.huating.jfp.msg.api.kafka.entity.DutyInfo">
        <result javaType="java.lang.String" property="post" column="postName"/>
        <collection
                property="times"
                ofType="com.huating.jfp.msg.api.kafka.entity.Times"
                javaType="java.util.ArrayList"
                select="selectTodayInfo"
                column="postUuid">
        </collection>
</resultMap>

<select id="getPostAllNotGroup" resultMap="dutyInfo">
        select
            CONCAT_WS('-',b.sct_type_name,a.spc_job) AS postName,
            a.spc_uuid as postUuid
        FROM
            ag_sdl_post_configure a
                LEFT JOIN ag_sdl_type_configure b ON a.sct_uuid = b.sct_uuid
        WHERE
            source_dept='allpersons'
</select>

<select id="selectTodayInfo" resultType="com.huating.jfp.msg.api.kafka.entity.Times">
        SELECT
        CONCAT_WS('-',b.shc_class_begtime,b.shc_class_endtime) as time,
        (CASE WHEN ISNULL(d.us_name) != 1 &amp;&amp; ISNULL(d.us_phone) != 1 THEN 						GROUP_CONCAT(CONCAT_WS( '+',d.us_name, d.us_phone )) end) AS personers
        FROM ag_sdl_postshift a
        LEFT JOIN ag_sdl_shift_configure b ON a.shc_formuuid = b.shc_uuid
        LEFT JOIN ag_sdl_daily_from c on c.sdf_post = a.ps_uuid
        LEFT JOIN jfp_user d ON FIND_IN_SET( d.us_uuid, c.sdf_police_uuid )
        WHERE c.sdf_date = DATE (NOW())
        GROUP BY a.spc_formuuid
</select>

或者

<resultMap id="fieldInfoMapper" type="com.huating.jfp.safety.device.entity.DeviceTallyType">
        <result property="codeUuid" jdbcType="VARCHAR" column="code_uuid"/>
        <result property="codeName" jdbcType="VARCHAR" column="code_name"/>
        <result property="codeCode" jdbcType="VARCHAR" column="code_code"/>
        <collection property="broadcastTallyList" ofType="com.huating.jfp.safety.device.entity.DeviceBroadcastTally" >
            <result property="tallyUuid" jdbcType="VARCHAR" column="dbt_tallyuuid"/>
            <result property="tallyName" jdbcType="VARCHAR" column="dbt_tallyname"/>
            <result property="userName" jdbcType="VARCHAR" column="dbt_username"/>
            <result property="tallyRemark" jdbcType="VARCHAR" column="dbt_remark"/>
        </collection>
</resultMap>

<select id="selectInfoList" resultMap="fieldInfoMapper">
        SELECT
            t1.code_uuid,
            t1.code_name,
            t1.code_code,
            t2.dbt_tallyuuid,
            t2.dbt_tallyname,
            t2.dbt_username,
            t2.dbt_remark
        FROM
            jfp_code t1
        left join ag_security_device_broadcast_tally t2 on t1.code_uuid = t2.dbt_type
        WHERE
            t1.code_status != 2 and
            (t1.code_cus_number = #{acCusNumber} or t1.code_cus_number = 'all') and
            t1.code_char_code = 'broadcast_tally_type'
</select>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值