| 123456789101112131415161718192021222324252627282930313233343536 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.ylx.massage.mapper.TbFileMapper">
- <resultMap type="com.ylx.massage.domain.TbFile" id="TbFileMap">
- <result property="id" column="id" jdbcType="VARCHAR"/>
- <result property="md5" column="MD5" jdbcType="VARCHAR"/>
- <result property="fileUrl" column="file_url" jdbcType="VARCHAR"/>
- <result property="fileName" column="file_name" jdbcType="VARCHAR"/>
- <result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
- <result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
- <result property="isDelete" column="is_delete" jdbcType="INTEGER"/>
- </resultMap>
- <!-- 批量插入 -->
- <insert id="insertBatch" keyProperty="id" useGeneratedKeys="true">
- insert into ry-vue.tb_file(MD5file_urlfile_namecreate_timeupdate_timeis_delete)
- values
- <foreach collection="entities" item="entity" separator=",">
- (#{entity.md5}#{entity.fileUrl}#{entity.fileName}#{entity.createTime}#{entity.updateTime}#{entity.isDelete})
- </foreach>
- </insert>
- <!-- 批量插入或按主键更新 -->
- <insert id="insertOrUpdateBatch" keyProperty="id" useGeneratedKeys="true">
- insert into ry-vue.tb_file(MD5file_urlfile_namecreate_timeupdate_timeis_delete)
- values
- <foreach collection="entities" item="entity" separator=",">
- (#{entity.md5}#{entity.fileUrl}#{entity.fileName}#{entity.createTime}#{entity.updateTime}#{entity.isDelete})
- </foreach>
- on duplicate key update
- MD5 = values(MD5) file_url = values(file_url) file_name = values(file_name) create_time = values(create_time)
- update_time = values(update_time) is_delete = values(is_delete)
- </insert>
- </mapper>
|