From c50f2002f8e47fae55b628caa244904018477cb7 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Fri, 19 Nov 2021 14:48:49 +0800 Subject: [PATCH] Merge branch 'score-shop' of http://120.27.238.55:7000/r/xzx into score-shop --- gc-shop/src/main/resources/mapper/shop/ScoreOrderMapper.xml | 19 +++++++++++++++++-- 1 files changed, 17 insertions(+), 2 deletions(-) diff --git a/gc-shop/src/main/resources/mapper/shop/ScoreOrderMapper.xml b/gc-shop/src/main/resources/mapper/shop/ScoreOrderMapper.xml index 06723f7..fb8685a 100644 --- a/gc-shop/src/main/resources/mapper/shop/ScoreOrderMapper.xml +++ b/gc-shop/src/main/resources/mapper/shop/ScoreOrderMapper.xml @@ -139,7 +139,22 @@ 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 + and a.CREATED_TIME >= #{qgStartTime} + and a.CREATED_TIME <= #{qgEndTime} </select> + + <select id="selectOrderByIsFinish" resultType="com.xzx.gc.entity.ScoreOrder"> + select + a.* + from xzx_score_order a + where a.is_finish = 1 + and a.status = 2 + and a.is_finish_time <= #{dateTime} + </select> + + <update id="updateOrderStatusToDone"> + update xzx_score_order + set status = 4 + where id = #{id} + </update> </mapper> -- Gitblit v1.9.1