From 8675ae5b5a65835351e82d97dd1089db9a821669 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期二, 24 八月 2021 12:40:02 +0800
Subject: [PATCH] 加入银联支付
---
service-front/src/main/java/com/java110/front/controller/app/PaymentController.java | 40 ++++++++++++++++++++++++++++++++++++++--
1 files changed, 38 insertions(+), 2 deletions(-)
diff --git a/service-front/src/main/java/com/java110/front/controller/app/PaymentController.java b/service-front/src/main/java/com/java110/front/controller/app/PaymentController.java
index e93c4cb..7729259 100755
--- a/service-front/src/main/java/com/java110/front/controller/app/PaymentController.java
+++ b/service-front/src/main/java/com/java110/front/controller/app/PaymentController.java
@@ -15,6 +15,7 @@
*/
package com.java110.front.controller.app;
+import com.alibaba.fastjson.JSONObject;
import com.java110.core.base.controller.BaseController;
import com.java110.core.context.IPageData;
import com.java110.core.context.PageData;
@@ -129,6 +130,7 @@
appId);
return toPayInGoOutSMOImpl.toPay(newPd);
}
+
/**
* <p>缁熶竴涓嬪崟鍏ュ彛</p>
*
@@ -149,6 +151,7 @@
appId);
return toPayBackCitySMOImpl.toPay(newPd);
}
+
/**
* <p>缁熶竴涓嬪崟鍏ュ彛</p>
*
@@ -182,9 +185,25 @@
logger.debug("寰俊鏀粯鍥炶皟鎶ユ枃" + postInfo);
return toNotifySMOImpl.toNotify(postInfo, request);
-
-
}
+
+ /**
+ * <p>鏀粯鍥炶皟Api</p>
+ *
+ * @param request
+ * @throws Exception
+ */
+ @RequestMapping(path = "/notifyChinaUms", method = RequestMethod.POST)
+ public ResponseEntity<String> notifyChinaUms(HttpServletRequest request) {
+ JSONObject paramIn = new JSONObject();
+ for(String key :request.getParameterMap().keySet()){
+ paramIn.put(key,request.getParameter(key));
+ }
+ logger.debug("寰俊鏀粯鍥炶皟鎶ユ枃" + paramIn.toJSONString());
+
+ return toNotifySMOImpl.toNotify(paramIn.toJSONString(), request);
+ }
+
/**
* <p>鍑虹缁熶竴涓嬪崟鍏ュ彛</p>
@@ -207,6 +226,23 @@
}
/**
+ * <p>娆犺垂閾惰仈鍥炶皟</p>
+ *
+ * @param request
+ * @throws Exception
+ */
+ @RequestMapping(path = "/oweFeeNotifyChinaUms", method = RequestMethod.POST)
+ public ResponseEntity<String> oweFeeNotifyChinaUms( HttpServletRequest request) {
+ JSONObject paramIn = new JSONObject();
+ for(String key :request.getParameterMap().keySet()){
+ paramIn.put(key,request.getParameter(key));
+ }
+ logger.debug("寰俊鏀粯鍥炶皟鎶ユ枃" + paramIn.toJSONString());
+
+ return oweFeeToNotifySMOImpl.toNotify(paramIn.toJSONString(), request);
+ }
+
+ /**
* <p>鍑虹缁熶竴涓嬪崟鍏ュ彛</p>
*
* @param request
--
Gitblit v1.8.0