UnitMapper.xml
1.99 KB
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
<?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.huaheng.pc.config.unit.mapper.UnitMapper">
<resultMap type="com.huaheng.pc.config.unit.domain.Unit" id="bdStockResult">
<result property="unitId" column="unitId" />
<result property="name" column="name" />
<result property="number" column="number" />
<result property="deleted" column="deleted" />
</resultMap>
<sql id="selectbdStockVo">
select unitId, name, number,deleted from unit
</sql>
<insert id="insertBatch" parameterType="java.util.List">
INSERT INTO unit
(unitId,name,number) VALUES
<foreach collection="list" item="item" separator=",">
(
#{item.unitId},#{item.name},#{item.number}
)
</foreach>
</insert>
<update id="modifyBatch" parameterType="java.util.List">
update unit
<trim prefix="set" suffixOverrides=",">
<trim prefix="name =case" suffix="end,">
<foreach collection="list" item="item" index="index">
<if test="item.name!=null">
when unitId=#{item.unitId}
then #{item.name}
</if>
</foreach>
</trim>
<trim prefix="number =case" suffix="end,">
<foreach collection="list" item="item" index="index">
<if test="item.number!=null">
when unitId=#{item.unitId}
then #{item.number}
</if>
</foreach>
</trim>
</trim>
where unitId in
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item.unitId}
</foreach>
</update>
<update id="truncateTable">
truncate table unit
</update>
</mapper>