Mybatis的resultMap返回map

Posted java_pro

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis的resultMap返回map相关的知识,希望对你有一定的参考价值。

<resultMap type="Map" id="bankMaintainMap">
      <result column="bank_name" property="bankName"/>
      <result column="maintain_time_interval" property="maintainTimeInterval"/>
  </resultMap>
  <select id="getMaintainNotice" parameterType="Map" resultMap="bankMaintainMap">
      select 
          bank_name,
          maintain_time_interval
      from
          fp_channel_prd_bank
      where 
          channel_prd_id=7 
      and     
          maintain_time_interval
  </select>

 

以上是关于Mybatis的resultMap返回map的主要内容,如果未能解决你的问题,请参考以下文章

MyBatis中resultMap=“Map”和resultType=“Map”区别

Mybatis映射中的resultType和resultMap之代码详解

mybatis中的resultMap

Mybatis中的resultType和resultMap

Mybatis中的resultType和resultMap

Mybatis ResultMap 和 resultType 区别