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); }