From 6d60391f65633383bfcf2f1ec7c52ca5d3d7fe93 Mon Sep 17 00:00:00 2001 From: 张晓波 <bingbo1993@126.com> Date: 星期四, 19 十月 2023 10:09:07 +0800 Subject: [PATCH] 苏州配置文件简化 --- hd/pipe/StaffManage/src/main/resources/mapping/PlatUserMapper.xml | 14 +++++++++++++- 1 files changed, 13 insertions(+), 1 deletions(-) diff --git a/hd/pipe/StaffManage/src/main/resources/mapping/PlatUserMapper.xml b/hd/pipe/StaffManage/src/main/resources/mapping/PlatUserMapper.xml index bca8d0f..19fedf4 100644 --- a/hd/pipe/StaffManage/src/main/resources/mapping/PlatUserMapper.xml +++ b/hd/pipe/StaffManage/src/main/resources/mapping/PlatUserMapper.xml @@ -736,6 +736,12 @@ <if test="oriStr!=null and oriStr !=''"> ori_str, </if> + <if test="cmpType!=null and cmpType !=''"> + cmp_type, + </if> + <if test="captureScore!=null and captureScore !=''"> + capture_score, + </if> </trim> <trim prefix="values (" suffix=")" suffixOverrides=","> #{id}, @@ -759,6 +765,12 @@ </if> <if test="oriStr!=null and oriStr !=''"> #{oriStr}, + </if> + <if test="cmpType!=null and cmpType !=''"> + #{cmpType}, + </if> + <if test="captureScore!=null and captureScore !=''"> + #{captureScore}, </if> </trim> @@ -895,7 +907,7 @@ </select> <select id="queryUserFaceSingle" resultType="com.thhy.staff.modules.biz.face.entity.UserFaceVo"> - select user_id as userId,real_name as realName,sex,photo as templateImgUrl + select user_id as userId,real_name as realName,sex,photo from sys_plat_user spu where user_id = #{userId} </select> -- Gitblit v1.9.3