|
@@ -46,8 +46,9 @@ public class ReceivePayAndRefundController {
|
|
|
@ApiOperation(value="延时分账回调")
|
|
@ApiOperation(value="延时分账回调")
|
|
|
@RequestMapping(value = "/delayConfirmNotify",method = RequestMethod.POST)
|
|
@RequestMapping(value = "/delayConfirmNotify",method = RequestMethod.POST)
|
|
|
@ResponseBody
|
|
@ResponseBody
|
|
|
- @OperationLog(type = OperateType.ADD, description = "支付回调")
|
|
|
|
|
|
|
+ @OperationLog(type = OperateType.ADD, description = "分账回调")
|
|
|
public String delayConfirmNotify(@RequestBody DelayConfirmNotification delayConfirmNotification){
|
|
public String delayConfirmNotify(@RequestBody DelayConfirmNotification delayConfirmNotification){
|
|
|
|
|
+ log.info("delayConfirmNotify==="+ JSONObject.toJSONString(delayConfirmNotification));
|
|
|
return splitService.delayConfirmNotify(delayConfirmNotification);
|
|
return splitService.delayConfirmNotify(delayConfirmNotification);
|
|
|
}
|
|
}
|
|
|
|
|
|