From e18f48679e23f08f8b346779ec6ae930884bdeb9 Mon Sep 17 00:00:00 2001 From: 张晓波 <bingbo1993@126.com> Date: 星期五, 20 十月 2023 10:20:43 +0800 Subject: [PATCH] 苏州配置文件简 化 --- hd/pipe/StaffManage/src/main/resources/mapping/PlatUserMapper.xml | 25 +++++++++++++++++++++---- 1 files changed, 21 insertions(+), 4 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..4591523 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> @@ -846,14 +858,19 @@ <select id="queryDoorUser" resultType="com.thhy.staff.modules.biz.platuser.entity.DoorUserVo"> - select fr.create_time,fr.employee_no_string as jobNum,spu.real_name as realName,sg.group_name as groupName,1 as staffStatus + select fr.id,fr.create_time,fr.employee_no_string as userId,fd.through_type,spu.real_name as realName,spu.job_num as jobNum,sg.group_name as groupName,1 as staffStatus from t_face_record fr - left join sys_plat_user spu on spu.job_num = fr.employee_no_string + left join t_face_device fd on fd.dev_sno = fr.mac_address + left join sys_plat_user spu on spu.user_id = fr.employee_no_string left join sys_group_user sgu on spu.user_id = sgu.user_id left join sys_group sg on sg.group_id = sgu.group_id - where fr.notice_type = 5 and fr.verify = 1 and (fr.mac_address='e0:ca:3c:f0:d9:3a' or fr.mac_address = 'e0:ca:3c:f0:a7:34' or fr.mac_address = 'e0:ca:3c:f0:d9:3b') + where fr.verify = 1 and fd.through_type = 2 order by fr.create_time desc limit 10 + </select> + + <select id="queryOriStrById" resultType="string"> + select ori_str from t_face_record where id = #{id} </select> <select id="countInDoorUserToday" resultType="int"> @@ -895,7 +912,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