sf
jiangping
2025-04-30 dcdb0231034810232f2542f3865666ebf72daf11
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?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.doumee.dao.business.FileRecordMapper">
 
    <insert id="insertBatch" >
        insert into file_record(
        `CREATOR`,
        `CREATE_DATE`,
        `EDITOR`,
        `EDIT_DATE`,
        `ISDELETED`,
        `NAME`,
        `INFO`,
        `STATUS`,
        `TYPE`,
        `OBJ_ID`,
        `FOLDER`,
        `URL`,
        `KEYVAL`
        ) values
        <foreach collection="list" separator="," item="item">
            (#{item.creator}
            ,#{item.createDate}
            ,#{item.editor}
            ,#{item.editDate}
            ,#{item.isdeleted}
            ,#{item.name}
            ,#{item.info}
            ,#{item.status}
            ,#{item.type}
            ,#{item.objId}
            ,#{item.folder}
            ,#{item.url}
            ,#{item.keyval}
            )
        </foreach>
    </insert>
 
</mapper>