From 0a0ddc2087fa31cafb0589cf5c826f7caef1914e Mon Sep 17 00:00:00 2001 From: Hentua <wangdoubleone@gmail.com> Date: Mon, 08 May 2023 11:36:23 +0800 Subject: [PATCH] fix --- src/main/resources/mapper/modules/MallOrderInfoMapper.xml | 12 +++++++++++- 1 files changed, 11 insertions(+), 1 deletions(-) diff --git a/src/main/resources/mapper/modules/MallOrderInfoMapper.xml b/src/main/resources/mapper/modules/MallOrderInfoMapper.xml index a16b8d7..82c23f7 100644 --- a/src/main/resources/mapper/modules/MallOrderInfoMapper.xml +++ b/src/main/resources/mapper/modules/MallOrderInfoMapper.xml @@ -112,6 +112,8 @@ <result column="del_flag" property="delFlag" /> <result column="deliver_type" property="deliverType" /> <result column="shop_id" property="shopId" /> + <result column="score_amount" property="scoreAmount" /> + <result column="score_cnt" property="scoreCnt" /> <collection property="items" ofType="cc.mrbird.febs.mall.entity.MallOrderItem"> <id property="id" column="item_id" /> <result property="orderId" column="order_id" /> @@ -125,6 +127,10 @@ <result property="price" column="price" /> <result property="amount" column="amount" /> <result property="isNormal" column="is_normal" /> + <result property="staticMulti" column="static_multi" /> + <result property="goodsLevel" column="goods_level" /> + <result property="normalPer" column="normal_per" /> + <result property="normalBonus" column="normal_bonus" /> </collection> </resultMap> @@ -182,7 +188,11 @@ b.cnt, b.price, b.amount, - b.is_normal + b.is_normal, + b.static_multi, + b.goods_level, + b.normal_per, + b.normal_bonus from mall_order_info a inner join mall_order_item b on a.id=b.order_id where a.id=#{id} -- Gitblit v1.9.1