From 8d120580505ba97dd9c7bdef9122bf80559a558d Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Thu, 09 Feb 2023 18:09:15 +0800
Subject: [PATCH] 后台商品匹配运费模板 规格增加重量
---
src/main/resources/mapper/modules/MallGoodsMapper.xml | 11 +++++++++++
1 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/src/main/resources/mapper/modules/MallGoodsMapper.xml b/src/main/resources/mapper/modules/MallGoodsMapper.xml
index faa756b..fbeab66 100644
--- a/src/main/resources/mapper/modules/MallGoodsMapper.xml
+++ b/src/main/resources/mapper/modules/MallGoodsMapper.xml
@@ -341,4 +341,15 @@
</if>
</select>
+ <select id="selectMallGoodsListQueryByRuleId" resultType="cc.mrbird.febs.mall.entity.MallGoods">
+ select a.goods_name from mall_goods a where a.carriage_rule_id = #{id}
+ </select>
+
+ <select id="selectMallGoodsListQueryByRuleIdAndIsSale" resultType="cc.mrbird.febs.mall.entity.MallGoods">
+ select a.goods_name
+ from mall_goods a
+ where a.carriage_rule_id = #{id}
+ and a.is_sale = #{isSale}
+ </select>
+
</mapper>
\ No newline at end of file
--
Gitblit v1.9.1