修改多商户支付

This commit is contained in:
2024-12-27 18:54:48 +08:00
parent 22de4635e4
commit 0067152ca4
4 changed files with 24 additions and 22 deletions

View File

@ -81,12 +81,12 @@ public class WeChatPayController extends BaseController {
* 获取平台证书
* @return
*/
@ApiOperation("获取平台证书")
/*@ApiOperation("获取平台证书")
@GetMapping("/getPlatformCertificate")
public AjaxResult getPlatformCertificate()
{
return success(userWechatPayService.getPlatformCertificat());
}
}*/
/**
* 获取openId
@ -199,7 +199,7 @@ public class WeChatPayController extends BaseController {
queryWrapper.eq("wechat_public_key_id",wechatpaySerial);
NgMerchants ngMerchants = ngMerchantsMapper.selectOne(queryWrapper);
QueryWrapper queryWrappers = new QueryWrapper();
queryWrapper.eq("platform_certificate_serial_number",wechatpaySerial);
queryWrappers.eq("platform_certificate_serial_number",wechatpaySerial);
NgMerchants ngMerchants1 = ngMerchantsMapper.selectOne(queryWrappers);
boolean isVerified = false;
if(ngMerchants!=null){