From aa2364f2f5061164210f2a897b254be072284b32 Mon Sep 17 00:00:00 2001 From: songjun Date: Tue, 10 Oct 2023 16:46:13 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=9F=A5=E8=AF=A2=E6=9D=A1?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../resources/mapper/tester/TesterInterfaceMapper.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tester/src/main/resources/mapper/tester/TesterInterfaceMapper.xml b/tester/src/main/resources/mapper/tester/TesterInterfaceMapper.xml index ea3dc48..55fe410 100644 --- a/tester/src/main/resources/mapper/tester/TesterInterfaceMapper.xml +++ b/tester/src/main/resources/mapper/tester/TesterInterfaceMapper.xml @@ -29,12 +29,12 @@ and `desc` like concat('%', #{desc}, '%') - and mapping = #{mapping} + and mapping like concat('%', #{mapping}, '%') and http_method = #{httpMethod} - and content_type like concat('%', #{contentType}, '%') - and query_param = #{queryParam} - and body_param = #{bodyParam} - and path_param = #{pathParam} + and content_type like concat('%', #{contentType}, '%') + and query_param like concat('%', #{queryParam}, '%') + and body_param like concat('%', #{bodyParam}, '%') + and path_param like concat('%', #{pathParam}, '%') and judge_expression = #{judgeExpression} and status = #{status} -- Gitee