Commit 570cb01d by fanjiaxin

联调问题处理

parent 7be53995
Pipeline #71597 passed with stages
in 1 minute 1 second
...@@ -20,5 +20,5 @@ public interface IProductService { ...@@ -20,5 +20,5 @@ public interface IProductService {
/** /**
* 商品分享短链 * 商品分享短链
*/ */
ProductPromotionLinkVO getProductPromotionLink(String productId, String sharerAppid); ProductPromotionLinkVO getProductPromotionLink(String sharerAppid, String productId);
} }
...@@ -119,7 +119,7 @@ public class ProductServiceImpl implements IProductService { ...@@ -119,7 +119,7 @@ public class ProductServiceImpl implements IProductService {
} }
@Override @Override
public ProductPromotionLinkVO getProductPromotionLink(String productId, String shopAppid) { public ProductPromotionLinkVO getProductPromotionLink(String shopAppid, String productId) {
// 获取用户信息 // 获取用户信息
LoginUserInfo loginUserInfo = LoginUserContextHolder.get(); LoginUserInfo loginUserInfo = LoginUserContextHolder.get();
if (StringUtils.isBlank(loginUserInfo.getSharerAppId())) { if (StringUtils.isBlank(loginUserInfo.getSharerAppId())) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment