fix[litemall-db]: 删除多余的代码。

This commit is contained in:
Junling Bu
2018-04-01 16:08:27 +08:00
parent 2ab0ffc9ef
commit cfae40efbf

View File

@@ -25,7 +25,6 @@ public class LitemallOrderGoodsService {
public List<LitemallOrderGoods> findByOidAndGid(Integer orderId, Integer goodsId) {
LitemallOrderGoodsExample example = new LitemallOrderGoodsExample();
example.or().andOrderIdEqualTo(orderId).andGoodsIdEqualTo(goodsId);
List<LitemallOrderGoods> orderGoodsList = orderGoodsMapper.selectByExample(example);
return orderGoodsMapper.selectByExample(example);
}