From 3fa1bec83243a39d3209b15a96d67e0d75d078ca Mon Sep 17 00:00:00 2001 From: heheng <heheng@123456> Date: 星期五, 22 十一月 2024 16:59:58 +0800 Subject: [PATCH] 部分修改 --- expert-system/src/main/resources/mapper/system/SysExpertInfoMapper.xml | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/expert-system/src/main/resources/mapper/system/SysExpertInfoMapper.xml b/expert-system/src/main/resources/mapper/system/SysExpertInfoMapper.xml index e244223..ca6db37 100644 --- a/expert-system/src/main/resources/mapper/system/SysExpertInfoMapper.xml +++ b/expert-system/src/main/resources/mapper/system/SysExpertInfoMapper.xml @@ -28,9 +28,18 @@ <if test="name != null and name != ''"> and name like concat('%', #{name}, '%') </if> + <if test="phone != null and phone != ''"> + and phone like concat('%', #{phone}, '%') + </if> <if test="idCard != null and idCard != ''"> and id_card like concat('%', #{idCard}, '%') </if> + <if test="domain != null and domain != ''"> + and domain = #{domain} + </if> + <if test="level != null and level != ''"> + and level = #{level} + </if> <if test="bigClassify != null"> and big_classify = #{bigClassify} </if> -- Gitblit v1.9.2