From 567775c8ef9761b5fe5d04073ca329b7ef30e22d Mon Sep 17 00:00:00 2001
From: xieb <vip_xiaobin810@163.com>
Date: Thu, 11 Jan 2024 16:00:14 +0800
Subject: [PATCH] 第一轮结果导出
---
src/main/java/org/springblade/modules/system/mapper/UserMapper.xml | 4 ++++
1 files changed, 4 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 e08b50e..e4e52e1 100644
--- a/src/main/java/org/springblade/modules/system/mapper/UserMapper.xml
+++ b/src/main/java/org/springblade/modules/system/mapper/UserMapper.xml
@@ -25,6 +25,7 @@
<result column="entry_job_time" property="entryJobTime"/>
<result column="birthday" property="birthday"/>
<result column="sex" property="sex"/>
+ <result column="employee_type" property="employeeType"/>
<result column="role_id" property="roleId"/>
<result column="dept_id" property="deptId"/>
<result column="post_id" property="postId"/>
@@ -53,6 +54,9 @@
<if test="user.userType!=null and user.userType != ''">
and user_type = #{user.userType}
</if>
+ <if test="user.phone!=null and user.phone != ''">
+ and phone like concat('%', #{user.phone},'%')
+ </if>
<if test="user.postId!=null and user.postId != ''">
and post_id = #{user.postId}
</if>
--
Gitblit v1.9.3