From cfae40efbfdd7ae35068246995d8dd10b44618e1 Mon Sep 17 00:00:00 2001 From: Junling Bu Date: Sun, 1 Apr 2018 16:08:27 +0800 Subject: [PATCH] =?UTF-8?q?fix[litemall-db]:=20=E5=88=A0=E9=99=A4=E5=A4=9A?= =?UTF-8?q?=E4=BD=99=E7=9A=84=E4=BB=A3=E7=A0=81=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../litemall/db/service/LitemallOrderGoodsService.java | 1 - 1 file changed, 1 deletion(-) diff --git a/litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallOrderGoodsService.java b/litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallOrderGoodsService.java index bab91b6a..cd010058 100644 --- a/litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallOrderGoodsService.java +++ b/litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallOrderGoodsService.java @@ -25,7 +25,6 @@ public class LitemallOrderGoodsService { public List findByOidAndGid(Integer orderId, Integer goodsId) { LitemallOrderGoodsExample example = new LitemallOrderGoodsExample(); example.or().andOrderIdEqualTo(orderId).andGoodsIdEqualTo(goodsId); - List orderGoodsList = orderGoodsMapper.selectByExample(example); return orderGoodsMapper.selectByExample(example); }