Commit c9cbd62219711a8e89b380f12373256c3fdde50c

Authored by jiangchengyong
1 parent 99c6a8e4

收货地址Id 校验修改

myapp-sdk/src/main/java/com/b2c/myapp/sdk/service/impl/PickingInfoServiceImpl.java
... ... @@ -59,7 +59,7 @@ public class PickingInfoServiceImpl extends BaseServiceImpl implements PickingIn
59 59 public BaseOutput<List<PickingInfoOutput>> queryPickingInfosByBuyerId(Long buyerId) {
60 60 Map<String,Long> paramMap = Maps.newHashMap();
61 61 paramMap.put("buyerId",buyerId);
62   - return super.httpPost("/api/pickingInfo/queryPickingInfosByBuyerId", buyerId, new TypeReference<BaseOutput<List<PickingInfoOutput>>>() {});
  62 + return super.httpPost("/api/pickingInfo/queryPickingInfosByBuyerId", paramMap, new TypeReference<BaseOutput<List<PickingInfoOutput>>>() {});
63 63 }
64 64  
65 65 @Override
... ...