From c0db57abe71d3cedf5ad8326a03b8ad6cbfea43c Mon Sep 17 00:00:00 2001 From: liujie <liujie> Date: 星期三, 25 十月 2023 09:38:01 +0800 Subject: [PATCH] 10.13bug2 --- cloud-server-other/src/main/resources/mapper/GameMapper.xml | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/cloud-server-other/src/main/resources/mapper/GameMapper.xml b/cloud-server-other/src/main/resources/mapper/GameMapper.xml index 16290e2..df086c5 100644 --- a/cloud-server-other/src/main/resources/mapper/GameMapper.xml +++ b/cloud-server-other/src/main/resources/mapper/GameMapper.xml @@ -14,6 +14,9 @@ <if test ="query.type==3"> and st.id =#{query.id} </if> + <if test ="query.type==2"> + and ga.operationId =#{query.id} + </if> <if test="query.provinceCode!=null and query.provinceCode!=''"> and ga.provinceCode = #{query.provinceCode} @@ -68,6 +71,9 @@ <if test="state!=null "> and bk.status=#{state} </if> + <if test="storeId!=null "> + and st.id=#{storeId} + </if> </where> -- Gitblit v1.7.1