Browse Source

三方支付

qin 9 tháng trước cách đây
mục cha
commit
eb60510533

+ 2 - 1
src/main/java/com/poteviohealth/ym/ipos/controller/ReceivePayAndRefundController.java

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