Merge #64 into master from cc_20260313_ws_wallet

fix:关闭网商开通回调接口验签

* cc_20260313_ws_wallet: (6 commits squashed)

  - fix:新店开通网商钱包

  - fix:网商钱包开通回调修改

  - fix

  - fix

  - fix:关闭网商开通回调接口验签

  - Merge branch 'master' into cc_20260313_ws_wallet
    
    # Conflicts:
    #	coolstore-partner-service/src/main/java/com/cool/store/service/wallet/WalletService.java
    #	coolstore-partner-service/src/main/java/com/cool/store/service/wallet/impl/WalletServiceImpl.java
    #	coolstore-partner-web/src/main/java/com/cool/store/controller/webc/MiniWalletController.java

Signed-off-by: 王非凡 <accounts_67eba0c5fee9c49c80c8e2b4@mail.teambition.com>
Merged-by: 正新 <accounts_6964c7bcd2a2c377c5bbd01b@mail.teambition.com>

CR-link: https://codeup.aliyun.com/692ea314dec569489f6f167c/hangzhou/java/custom_zxjp/change/64
This commit is contained in:
王非凡
2026-03-13 15:45:50 +00:00
committed by 正新
parent f1f0295906
commit f01cf2886e
4 changed files with 7 additions and 5 deletions

View File

@@ -201,5 +201,5 @@ public interface WalletService {
/**
* 网商充值账户查询
*/
WsPayAccountDTO wsPayAccountQuery(OutStoreIdRequest request);
WsPayAccountDTO wsPayAccountQuery(StoreShopRequest request);
}

View File

@@ -746,8 +746,9 @@ public class WalletServiceImpl implements WalletService {
}
@Override
public WsPayAccountDTO wsPayAccountQuery(OutStoreIdRequest request) {
return walletApiService.wsPayAccountQuery(request);
public WsPayAccountDTO wsPayAccountQuery(StoreShopRequest request) {
String storeId = getStoreId(request);
return walletApiService.wsPayAccountQuery(new OutStoreIdRequest(storeId));
}
public String getStoreId(StoreShopRequest request) {