From 1cb12391db6154f2d1a8fdf8e0506fe3f3eb2f15 Mon Sep 17 00:00:00 2001 From: luo <2855143437@qq.com> Date: 星期日, 08 十月 2023 16:19:34 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- cloud-server-activity/src/main/resources/mapper/PointsMerchandiseMapper.xml | 34 ++++++++++++++++++++++++++++++++++ 1 files changed, 34 insertions(+), 0 deletions(-) diff --git a/cloud-server-activity/src/main/resources/mapper/PointsMerchandiseMapper.xml b/cloud-server-activity/src/main/resources/mapper/PointsMerchandiseMapper.xml index 52bffed..d1bb6d3 100644 --- a/cloud-server-activity/src/main/resources/mapper/PointsMerchandiseMapper.xml +++ b/cloud-server-activity/src/main/resources/mapper/PointsMerchandiseMapper.xml @@ -16,6 +16,7 @@ pickUpQuantity, `sort`, shelves + from t_points_merchandise where 1 = 1 <if test="name != null"> @@ -35,6 +36,39 @@ </if> order by insertTime desc </select> + <select id="queryGoodsListOfSearchAudit" resultType="java.util.Map"> + SELECT id, + `name`, + `cover`, + `type`, + date_format(startTime ,'%Y-%m-%d') as startTime, + date_format(endTime ,'%Y-%m-%d') as endTime, + useScope, + userPopulation, + quantityIssued, + pickUpQuantity, + `sort`, + shelves, + status + from t_points_merchandise + where type =3 and `status` !=1 + <if test="name != null"> + and `name` like concat('%', #{name}, '%') + </if> + <if test="type != null"> + and cardType = #{type} + </if> + <if test="redemptionMethod != null"> + and redemptionMethod = #{redemptionMethod} + </if> + <if test="userPopulation != null"> + and userPopulation = #{userPopulation} + </if> + <if test="activeStatus != null"> + and `status` = #{activeStatus} + </if> + order by insertTime desc + </select> <select id="ticketList" resultType="java.util.Map"> SELECT id, `name`, -- Gitblit v1.7.1