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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
| <?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.ycl.mapper.ProjectPlanProgressReportMapper">
|
| <!-- 通用查询映射结果 -->
| <resultMap id="BaseResultMap" type="com.ycl.domain.vo.ProjectPlanProgressReportVO">
| <result column="project_plan_info_id" property="projectPlanInfoId" />
| <result column="start_time" property="startTime" />
| <result column="end_time" property="endTime" />
| <result column="progress_status" property="progressStatus" />
| <result column="actual_invest" property="actualInvest" />
| </resultMap>
| <insert id="insertOne">
| INSERT INTO t_project_plan_progress_report (
| project_plan_info_id,
| start_time,
| end_time,
| progress_status,
| actual_invest
| )
| VALUES (
| #{projectPlanInfoId},
| #{startTime},
| #{endTime},
| #{progressStatus},
| #{actualInvest}
| )
| </insert>
| <update id="updateOne">
| UPDATE t_project_plan_progress_report
| SET
| start_time = #{startTime},
| end_time = #{endTime},
| progress_status = #{progressStatus},
| actual_invest = #{actualInvest}
| WHERE
| id = #{id}
| </update>
|
|
| <select id="getById" resultMap="BaseResultMap">
| SELECT
| TPPPR.project_plan_info_id,
| TPPPR.start_time,
| TPPPR.end_time,
| TPPPR.progress_status,
| TPPPR.actual_invest,
| TPPPR.id
| FROM
| t_project_plan_progress_report TPPPR
| WHERE
| TPPPR.id = #{id} AND TPPPR.deleted = 0
| </select>
|
|
| <select id="getPage" resultMap="BaseResultMap">
| SELECT
| TPPPR.project_plan_info_id,
| TPPPR.start_time,
| TPPPR.end_time,
| TPPPR.progress_status,
| TPPPR.actual_invest,
| TPPPR.id
| FROM
| t_project_plan_progress_report TPPPR
| WHERE
| TPPPR.deleted = 0
| </select>
|
|
| <select id="getDetail" resultType="com.ycl.domain.vo.ProgressReportResponseVO">
| SELECT
| ppi.id,
| pppr.id AS progress_report_id,
| pper.id AS examine_record_id,
| ppr.plan_time,
| ppr.plan_time_flag,
| ppi.title,
| ppi.start_time,
| ppi.end_time,
| pppr.start_time AS actual_start_time,
| pppr.end_time AS actual_end_time,
| pppr.progress_status,
| pppr.actual_invest,
| pper.department_examine,
| pper.department_approval,
| pper.department_approval_reply,
| pper.manage_examine,
| pper.manage_approval,
| pper.manage_approval_reply
| FROM t_project_plan_info AS ppi
| INNER JOIN t_project_plan_record AS ppr ON ppi.project_plan_record_id = ppr.id
| LEFT JOIN t_project_plan_progress_report AS pppr ON pppr.project_plan_info_id = ppi.id
| RIGHT JOIN t_project_plan_examine_record AS pper ON pper.project_plan_info_id = ppi.id
| WHERE ppi.id = #{id}
| </select>
|
| </mapper>
|
|