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

@@ -51,7 +51,8 @@ public class OpenApiValidateFilter implements Filter {
private static final Set<String> WHITELIST_URIS = new HashSet<>(Arrays.asList(
"/zxjp/open/v1/statusRefresh",
"/zxjp/open/v1/getStoreUser",
"/zxjp/open/v1/callback"
"/zxjp/open/v1/callback",
"/zxjp/open/v1/wallet/onlineCommercialBankCallback"
));
private static final List<String> oldUrlMapping = new ArrayList<>(Arrays.asList(
"/zxjp/open/v1/statusRefresh","/zxjp/open/v1/changePaymentStatus",

View File

@@ -155,7 +155,7 @@ public class MiniWalletController {
@ApiOperation("网商充值账户查询")
@PostMapping("/wsPayAccountQuery")
public ResponseResult<WsPayAccountDTO> wsPayAccountQuery(@RequestBody @Validated OutStoreIdRequest request) {
public ResponseResult<WsPayAccountDTO> wsPayAccountQuery(@RequestBody @Validated StoreShopRequest request) {
return ResponseResult.success(walletService.wsPayAccountQuery(request));
}
}