From 7d35a3676ac6d4abcc7a02f33ba020bc29e1b825 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Wed, 10 Nov 2021 16:17:56 +0800 Subject: [PATCH] 20211108 --- gc-shop/src/main/resources/mapper/shop/ScoreOrderMapper.xml | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/gc-shop/src/main/resources/mapper/shop/ScoreOrderMapper.xml b/gc-shop/src/main/resources/mapper/shop/ScoreOrderMapper.xml index e76a47d..4dcd053 100644 --- a/gc-shop/src/main/resources/mapper/shop/ScoreOrderMapper.xml +++ b/gc-shop/src/main/resources/mapper/shop/ScoreOrderMapper.xml @@ -127,4 +127,19 @@ and user_id=#{userId} </if> </select> + + + <select id="selectGoodsQuotaTime" resultType="java.lang.Integer"> + SELECT + IFNULL(SUM(a.cnt), 0) + FROM + xzx_score_order a + LEFT JOIN xzx_score_order_details b ON b.order_id = a.id + WHERE + a. STATUS IN (1, 2, 3, 4, 5) + and a.user_id = #{userId} + AND b.goods_id = #{goodsId} + and a.CREATED_TIME >= #{qgStartTime} + and a.CREATED_TIME <= #{qgEndTime} + </select> </mapper> -- Gitblit v1.9.1