DelayedShipmentMapper.xml
2.48 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
57
58
59
60
61
62
63
64
65
66
67
<?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.lframework.xingyun.sc.mappers.DelayedShipmentMapper">
<resultMap id="DelayedShipment" type="com.lframework.xingyun.sc.entity.DelayedShipment">
<id column="id" property="id"/>
<result column="apply_date" property="applyDate"/>
<result column="dept_id" property="deptId"/>
<result column="dept_name" property="deptName"/>
<result column="total_quantity" property="totalQuantity"/>
<result column="status" property="status"/>
<result column="create_by_id" property="createById"/>
<result column="create_by" property="createBy"/>
<result column="update_by_id" property="updateById"/>
<result column="update_by" property="updateBy"/>
<result column="create_time" property="createTime"/>
<result column="update_time" property="updateTime"/>
</resultMap>
<sql id="DelayedShipment_sql">
SELECT
tb.id,
tb.apply_date,
tb.dept_id,
sd.name AS dept_name,
tb.total_quantity,
tb.status,
tb.create_by_id,
tb.create_by,
tb.update_by_id,
tb.update_by,
tb.create_time,
tb.update_time
FROM delayed_shipment AS tb
left join sys_dept as sd on sd.id = tb.dept_id
</sql>
<select id="query" resultMap="DelayedShipment">
<include refid="DelayedShipment_sql"/>
<where>
<if test="vo.deptName != null and vo.deptName != ''">
AND sd.name LIKE CONCAT('%', #{vo.deptName},'%')
</if>
<if test="vo.applyDateStart != null">
AND tb.apply_date >= #{vo.applyDateStart}
</if>
<if test="vo.applyDateEnd != null">
<![CDATA[
AND tb.apply_date <= #{vo.applyDateEnd}
]]>
</if>
<if test="vo.status != null and vo.status != ''">
AND tb.status = #{vo.status}
</if>
</where>
ORDER BY tb.create_time DESC
</select>
<select id="findById" resultType="com.lframework.xingyun.sc.entity.DelayedShipment">
<include refid="DelayedShipment_sql"/>
<where>
<if test="id != null and id != ''">
AND tb.id = #{id}
</if>
</where>
</select>
</mapper>