新增 支付宝授权参数

This commit is contained in:
2026-01-09 11:29:53 +08:00
parent 3a70c1ced3
commit cab370d1e1
7 changed files with 18 additions and 6 deletions

View File

@@ -81,6 +81,7 @@ public class EntryManagerMqListener {
merchant.setAlipayOrderId(resp.getAlipayOrderId());
merchant.setAlipayStatus(resp.getAlipayStatus());
merchant.setAlipayAuthInfo(resp.getAlipayAuthInfo());
merchant.setAlipayErrorMsg(resp.getAlipayErrorMsg());
shopDirectMerchantService.updateById(merchant);
}

View File

@@ -80,7 +80,7 @@ public class EntryManagerTask {
}
shopDirectMerchantService.updateById(shopDirectMerchant);
if (StrUtil.isNotBlank(wechatMerchantId) || StrUtil.isNotBlank(alipayMerchantId)) {
shopInfoService.editEntry(shopDirectMerchant.getShopId(), wechatMerchantId, alipayMerchantId);
shopInfoService.editEntry(shopDirectMerchant.getShopId(), wechatMerchantId, alipayMerchantId, shopDirectMerchant.getAlipayAuthInfo());
}
}
}