Commit 751bbbe9946360b791caedac5a6dd875a1c187f3
1 parent
78079a57
店铺update
Showing
2 changed files
with
4 additions
and
4 deletions
myapp-sdk/src/main/java/com/b2c/myapp/sdk/service/ShopInfoService.java
... | ... | @@ -15,11 +15,11 @@ public interface ShopInfoService { |
15 | 15 | /** |
16 | 16 | * @comment 创建店铺 |
17 | 17 | * @param shopSaveInput 店铺基本信息 |
18 | - * @return BaseOutput<Integer> | |
18 | + * @return BaseOutput<ShopOutput> | |
19 | 19 | * @author kelan |
20 | 20 | * @time 2016/11/29 19:03 |
21 | 21 | */ |
22 | - public BaseOutput<Integer> createShopInfo(ShopSaveInput shopSaveInput); | |
22 | + public BaseOutput<ShopOutput> createShopInfo(ShopSaveInput shopSaveInput); | |
23 | 23 | /** |
24 | 24 | * @comment 通过卖家id获取店铺信息 |
25 | 25 | * @param sellerId 卖家id |
... | ... |
myapp-sdk/src/main/java/com/b2c/myapp/sdk/service/impl/ShopInfoServiceImpl.java
... | ... | @@ -22,8 +22,8 @@ public class ShopInfoServiceImpl extends BaseServiceImpl implements ShopInfoServ |
22 | 22 | } |
23 | 23 | |
24 | 24 | @Override |
25 | - public BaseOutput<Integer> createShopInfo(ShopSaveInput shopSaveInput) { | |
26 | - return this.httpPost("/api/shop/createShopInfo", shopSaveInput, new TypeReference<BaseOutput<Integer>>(){}); | |
25 | + public BaseOutput<ShopOutput> createShopInfo(ShopSaveInput shopSaveInput) { | |
26 | + return this.httpPost("/api/shop/createShopInfo", shopSaveInput, new TypeReference<BaseOutput<ShopOutput>>(){}); | |
27 | 27 | } |
28 | 28 | |
29 | 29 | @Override |
... | ... |