From c6a33ee7ab133b3bcf5f377456b473c7bd4b9a77 Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Fri, 22 Oct 2021 19:57:38 +0800
Subject: [PATCH] 1.保安单位,保安人员现场检查字段修改,接口修改 2.成绩查询接口修改 3.保安员资格审查接口修改
---
src/main/java/org/springblade/modules/system/mapper/UserMapper.xml | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/src/main/java/org/springblade/modules/system/mapper/UserMapper.xml b/src/main/java/org/springblade/modules/system/mapper/UserMapper.xml
index a8bf60c..96ae4de 100644
--- a/src/main/java/org/springblade/modules/system/mapper/UserMapper.xml
+++ b/src/main/java/org/springblade/modules/system/mapper/UserMapper.xml
@@ -251,6 +251,12 @@
<if test="user.deptId!=null and user.deptId!=''">
and bu.dept_id =#{user.deptId}
</if>
+ <if test="user.startTime!=null and user.startTime!=''">
+ and bu.paper_time >= #{user.startTime}
+ </if>
+ <if test="user.endTime!=null and user.endTime!=''">
+ and bu.paper_time <= #{user.endTime}
+ </if>
<if test="user.useName==null or user.useName==''">
order by bu.id
</if>
--
Gitblit v1.9.3