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
| <?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.gkhy.exam.system.mapper.ProjectDocumentMapper">
|
| <insert id="insertBaths">
| INSERT INTO `project_document`
| (`company_id`, `catalogue_id`, `item_id`, `file_name`, `file_path`,document_type )
| VALUES
| <foreach collection="projectDocuments" separator="," item="item">
| ( #{item.companyId}, #{item.catalogueId}, #{item.itemId}, #{item.fileName}, #{item.filePath}, #{item.documentType} )
| </foreach>
|
| </insert>
| <select id="selectDocumentList" resultType="com.gkhy.exam.system.domain.ProjectDocument">
| SELECT
| `id`,
| `company_id`,
| `catalogue_id`,
| `item_id`,
| `file_name`,
| `file_path`,
| `del_flag`,
| `document_type`
| FROM
| `project_document`
| where del_flag = 1
| and company_id = #{companyId}
| and catalogue_id = #{catalogueId}
| and item_id = #{itemId}
| and document_type = #{documentType}
| </select>
| </mapper>
|
|