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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
| <?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.changhong.epc.form.mapper.tenant.ExcelLogMapper.ExcelLobMapper" >
|
| <insert id="addExcelLog" parameterType="com.changhong.epc.bean.parsing.ExcelLog"
| useGeneratedKeys="true" keyProperty="id">
| INSERT INTO excellog_{rule} (
| `formId`,`tenantId`,
| `formName`, `startTime`, `state`,
| `filePath`, `overTime`, `mag`,
| `ins_p`, `data_start`, `type`
| )
| VALUES
| (
| #{formId},
| #{tenantId},
| #{formName},
| #{startTime},
| #{state},
| #{filePath},
| #{overTime},
| #{mag},
| #{insP},
| #{dataStart},
| #{type}
| )
|
| </insert>
|
| <select id="selectEmpLog" resultType="com.changhong.epc.bean.parsing.ExcelLog" parameterType="com.changhong.epc.bean.parsing.ExcelLog">
| SELECT
| `id`, `formId`,
| `tenantId`, `formName`,
| `startTime`, `state`,
| `filePath`, `overTime`,
| `mag`, ins_t insT,
| ins_p insP, upd_t updT,
| upd_p updP, `data_start` dataStart,
| `type`
| FROM
| excellog_{rule}
| <trim prefix="WHERE" prefixOverrides="AND | OR">
| data_start = 0
| <if test="type!=null" >
| and type = #{type}
| </if>
| <if test="state!=null" >
| and state = #{state}
| </if>
| </trim>
| </select>
|
| <update id="updateExcelLog" parameterType="com.changhong.epc.bean.parsing.ExcelLog">
| UPDATE excellog_{rule}
| SET
| state = #{state},
| overTime = #{overTime},
| mag = #{mag}
| <if test="filePath!=null">
| , filePath = #{filePath}
| </if>
| WHERE
| id = #{id}
| </update>
| </mapper>
|
|