MyBatis批量插入


        INSERT INTO oal_tb_address (account, contacts, address_type, details, phone, province_id,
        city_id, area_id, status, create_time, del_tag)
        VALUES
       
            (
                #{item.account,jdbcType=VARCHAR},
                #{item.contacts,jdbcType=VARCHAR},
                #{item.addressType, jdbcType=INTEGER},
                #{item.details, jdbcType=VARCHAR},
                #{item.phone, jdbcType=VARCHAR},
                #{item.provinceId, jdbcType=VARCHAR},
                #{item.cityId, jdbcType=VARCHAR},
                #{item.areaId, jdbcType=VARCHAR},
                #{item.status, jdbcType=INTEGER},
                #{item.createTime, jdbcType=TIMESTAMP},
              '0'
            )
       

   

你可能感兴趣的:(MyBatis)