From b02906b4fa46fd1f30da0ffdaaaea60fd446bede Mon Sep 17 00:00:00 2001 From: wuyibo <771227828@qq.com> Date: Wed, 14 Jun 2023 17:29:21 +0800 Subject: [PATCH] =?UTF-8?q?=E7=90=83=E8=A1=A3=E4=BA=8C=E7=BB=B4=E7=A0=81?= =?UTF-8?q?=E9=80=BB=E8=BE=91=E4=BF=AE=E6=94=B91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mapper/system/UserWxAqrCodeMapper.xml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/ruoyi-modules/ruoyi-system/src/main/resources/mapper/system/UserWxAqrCodeMapper.xml b/ruoyi-modules/ruoyi-system/src/main/resources/mapper/system/UserWxAqrCodeMapper.xml index 9eca2919..64251705 100644 --- a/ruoyi-modules/ruoyi-system/src/main/resources/mapper/system/UserWxAqrCodeMapper.xml +++ b/ruoyi-modules/ruoyi-system/src/main/resources/mapper/system/UserWxAqrCodeMapper.xml @@ -20,10 +20,12 @@ + + - select ID, IS_DELETED, CREATED_TIME, CREATED_BY, MODIFIED_BY, LAST_UPDATED_TIME, scene, code_img_url, user_id, bus_type, page, width, use_desc, jersey_no, team_id from user_wx_aqr_code + select ID, IS_DELETED, CREATED_TIME, CREATED_BY, MODIFIED_BY, LAST_UPDATED_TIME, scene, code_img_url, user_id, bus_type, page, width, use_desc, jersey_no, team_id,competition_of_team_id,competition_members_id from user_wx_aqr_code @@ -65,6 +69,8 @@ and t.team_id = #{teamId} and team.TEAM_NAME like concat('%', #{teamName}, '%') and u.USER_NAME like concat('%', #{userName}, '%') + and t.competition_members_id = #{competitionMembersId} + and t.competition_of_team_id = #{competitionOfTeamId} @@ -85,6 +91,8 @@ use_desc, jersey_no, team_id, + competition_members_id, + competition_of_team_id, #{isDeleted}, @@ -101,6 +109,8 @@ #{useDesc}, #{jerseyNo}, #{teamId}, + #{competitionMembersId}, + #{competitionOfTeamId}, @@ -121,6 +131,8 @@ use_desc = #{useDesc}, jersey_no = #{jerseyNo}, team_id = #{teamId}, + competition_members_id = #{competitionMembersId}, + competition_of_team_id = #{competitionOfTeamId}, where ID = #{id}