This commit is contained in:
liuyingfang
2023-08-11 14:04:31 +08:00
parent 742cd8e485
commit f2af33243f
5 changed files with 28 additions and 7 deletions

View File

@@ -65,11 +65,16 @@ public class PayNotifyController {
}
@RequestMapping(value = "/lklCallBack",method = RequestMethod.POST)
@RequestMapping(value = "/lklCallBack",method = RequestMethod.POST)
public String lklCallBack(@RequestBody Map<String,String> params) {
log.info("【拉卡拉】异步回调开始,【拉卡拉】回调参数:{}<=====================",JSONObject.toJSONString(params));
return String.valueOf(lklPayService.payNotifyCallBack(params));
}
@RequestMapping(value = "/lklCallBackVoiceBox",method = RequestMethod.POST)
public String lklCallBackVoiceBox(@RequestBody Map<String,String> params) {
log.info("【拉卡拉音箱】异步回调开始,【拉卡拉】回调参数:{}<=====================",JSONObject.toJSONString(params));
return String.valueOf(lklPayService.payNotifyCallBack(params));
}