From ffba4c1baea0c7cedd2a70cfc56101fb0b58da25 Mon Sep 17 00:00:00 2001
From: guoshilong <123456>
Date: Sat, 23 Dec 2023 13:40:31 +0800
Subject: [PATCH] 查询当日人员位置
---
src/main/java/org/springblade/modules/apply/mapper/ExamPaymentMapper.xml | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/src/main/java/org/springblade/modules/apply/mapper/ExamPaymentMapper.xml b/src/main/java/org/springblade/modules/apply/mapper/ExamPaymentMapper.xml
index 5d0c3d5..25af104 100644
--- a/src/main/java/org/springblade/modules/apply/mapper/ExamPaymentMapper.xml
+++ b/src/main/java/org/springblade/modules/apply/mapper/ExamPaymentMapper.xml
@@ -23,6 +23,9 @@
<if test="examPayment.workerId!=null and examPayment.workerId!=''">
and se.worker_id like concat('%', #{examPayment.workerId},'%')
</if>
+ <if test="examPayment.deptId!=null and examPayment.deptId!=''">
+ and bd.id = #{examPayment.deptId}
+ </if>
<if test="examPayment.deptName!=null and examPayment.deptName!=''">
and bd.dept_name like concat('%', #{examPayment.deptName},'%')
</if>
--
Gitblit v1.9.3