From 76bf26993bc44d0a6353e18a74fe197f486dde0f Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期一, 30 九月 2024 09:48:49 +0800 Subject: [PATCH] 工单取图片优化 --- ycl-server/src/main/resources/mapper/zgyw/CheckIndexCarMapper.xml | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/ycl-server/src/main/resources/mapper/zgyw/CheckIndexCarMapper.xml b/ycl-server/src/main/resources/mapper/zgyw/CheckIndexCarMapper.xml index 8472ac5..e8c64e5 100644 --- a/ycl-server/src/main/resources/mapper/zgyw/CheckIndexCarMapper.xml +++ b/ycl-server/src/main/resources/mapper/zgyw/CheckIndexCarMapper.xml @@ -54,7 +54,6 @@ <select id="getCheckIndexCarList" resultMap="CheckIndexCarResult"> select tcic.*,sd.dept_name from t_check_index_car tcic left join sys_dept sd on tcic.dept_id = sd.dept_id - left join t_check_score tcs on tcic.id = tcs.index_id <where> <if test="examineTag != null "> and tcic.examine_tag = #{examineTag}</if> <if test="day != null "> and date(tcic.create_time) = #{day}</if> @@ -158,8 +157,14 @@ AND dept_id = #{deptId} </if> <if test="dataScope == 1"> + AND examine_tag = 0 + </if> + <if test="dataScope == 2"> AND examine_tag = 1 </if> + <if test="dataScope == 3"> + AND examine_tag = 2 + </if> </where> ORDER BY create_time DESC -- Gitblit v1.8.0