mybatis_批量插入参数List_Map_String,Object

mybatis_批量插入参数List>


Dao

       int insertCoachMessageInfo(@Param("listInsert")List> listInsert);

xml

      insert into coach_message_info(company_id,coach_info_id,title,content,is_checked,create_time)  
               values 
               
                       (#{map.companyId},#{map.coachInfo},#{map.title},#{map.content},#{map.is_checked},#{map.create_time})
               

 

你可能感兴趣的:(mybatis)