Commit a05dc990815eec9d833661419597174e3b3bf905
1 parent
adfc2888
收货信息接口 update
Showing
2 changed files
with
3 additions
and
3 deletions
myapp-sdk/src/main/java/com/b2c/myapp/sdk/MyAppClient.java
... | ... | @@ -45,7 +45,7 @@ public class MyAppClient { |
45 | 45 | this.shopBuyerService = new ShopBuyerServiceImpl(token); |
46 | 46 | this.shopProductRecommendService = new ShopProductRecommendServiceImpl(token); |
47 | 47 | this.shoppingCartService = new ShoppingCartServiceImpl(token); |
48 | - this.pickingInfoService = new PickingInfoInfoServiceImpl(token); | |
48 | + this.pickingInfoService = new PickingInfoServiceImpl(token); | |
49 | 49 | this.fundTradeService = new FundTradeServiceImpl(token); |
50 | 50 | } |
51 | 51 | /** |
... | ... |
myapp-sdk/src/main/java/com/b2c/myapp/sdk/service/impl/PickingInfoInfoServiceImpl.java renamed to myapp-sdk/src/main/java/com/b2c/myapp/sdk/service/impl/PickingInfoServiceImpl.java
... | ... | @@ -20,9 +20,9 @@ import java.util.Map; |
20 | 20 | * @author jiangchengyong |
21 | 21 | * @createTime 16/11/28 12:21 |
22 | 22 | */ |
23 | -public class PickingInfoInfoServiceImpl extends BaseServiceImpl implements PickingInfoService { | |
23 | +public class PickingInfoServiceImpl extends BaseServiceImpl implements PickingInfoService { | |
24 | 24 | |
25 | - public PickingInfoInfoServiceImpl(String token) { | |
25 | + public PickingInfoServiceImpl(String token) { | |
26 | 26 | super(token); |
27 | 27 | } |
28 | 28 | |
... | ... |