From ce6fc16f568cc3c396e141f1f9a7e16d3abf802d Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Tue, 30 Aug 2022 16:59:55 +0800 Subject: [PATCH] 20220822 --- src/main/resources/mapper/modules/MallRefundMapper.xml | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/src/main/resources/mapper/modules/MallRefundMapper.xml b/src/main/resources/mapper/modules/MallRefundMapper.xml index 2de0197..1cfb987 100644 --- a/src/main/resources/mapper/modules/MallRefundMapper.xml +++ b/src/main/resources/mapper/modules/MallRefundMapper.xml @@ -20,7 +20,14 @@ </select> <select id="getOrderRefundListInPage" resultType="cc.mrbird.febs.mall.entity.MallRefundEntity"> - select a.* from mall_refund a + select a.*, + b.order_no orderNo, + b.status, + c.goods_name goodsName, + c.cnt, + from mall_refund a + inner join mall_order_info b on a.order_id = b.id + inner join mall_order_item c on a.item_id = c.id <where> <if test="record != null" > <if test="record.state!=null and record.state!=''"> -- Gitblit v1.9.1