From e4dbdce2825a07cd11f99b98cf58e94ebb20e233 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期四, 22 十月 2020 11:03:53 +0800
Subject: [PATCH] 优化缓存问题
---
service-front/src/main/java/com/java110/front/controller/PaymentController.java | 116 ++++++++++++++++++++++++++++++++++++++++++++++++++++++---
1 files changed, 109 insertions(+), 7 deletions(-)
diff --git a/service-front/src/main/java/com/java110/front/controller/PaymentController.java b/service-front/src/main/java/com/java110/front/controller/PaymentController.java
index 9d4dda8..c6b55e9 100644
--- a/service-front/src/main/java/com/java110/front/controller/PaymentController.java
+++ b/service-front/src/main/java/com/java110/front/controller/PaymentController.java
@@ -1,11 +1,9 @@
package com.java110.front.controller;
-import com.java110.front.smo.payment.IToNotifySMO;
-import com.java110.front.smo.payment.IToPaySMO;
-import com.java110.front.smo.payment.IToPayTempCarInoutSMO;
import com.java110.core.base.controller.BaseController;
import com.java110.core.context.IPageData;
import com.java110.core.context.PageData;
+import com.java110.front.smo.payment.*;
import com.java110.utils.constant.CommonConstant;
import com.java110.utils.util.StringUtil;
import org.slf4j.Logger;
@@ -31,10 +29,25 @@
private IToPaySMO toPaySMOImpl;
@Autowired
+ private IToPayOweFeeSMO toPayOweFeeSMOImpl;
+
+ @Autowired
+ private IRentingToPaySMO rentingToPaySMOImpl;
+
+ @Autowired
private IToPayTempCarInoutSMO toPayTempCarInoutSMOImpl;
@Autowired
private IToNotifySMO toNotifySMOImpl;
+
+ @Autowired
+ private IRentingToNotifySMO rentingToNotifySMOImpl;
+
+ @Autowired
+ private IOweFeeToNotifySMO oweFeeToNotifySMOImpl;
+
+ @Autowired
+ private IToQrPayOweFeeSMO toQrPayOweFeeSMOImpl;
/**
* <p>缁熶竴涓嬪崟鍏ュ彛</p>
@@ -46,8 +59,8 @@
public ResponseEntity<String> toPay(@RequestBody String postInfo, HttpServletRequest request) {
IPageData pd = (IPageData) request.getAttribute(CommonConstant.CONTEXT_PAGE_DATA);
/*IPageData pd = (IPageData) request.getAttribute(CommonConstant.CONTEXT_PAGE_DATA);*/
- String appId = request.getHeader("APP_ID");
- if(StringUtil.isEmpty(appId)){
+ String appId = request.getHeader("APP_ID");
+ if (StringUtil.isEmpty(appId)) {
appId = request.getHeader("APP-ID");
}
@@ -63,12 +76,33 @@
* @param request
* @throws Exception
*/
+ @RequestMapping(path = "/toOweFeePay", method = RequestMethod.POST)
+ public ResponseEntity<String> toOweFeePay(@RequestBody String postInfo, HttpServletRequest request) {
+ IPageData pd = (IPageData) request.getAttribute(CommonConstant.CONTEXT_PAGE_DATA);
+ /*IPageData pd = (IPageData) request.getAttribute(CommonConstant.CONTEXT_PAGE_DATA);*/
+ String appId = request.getHeader("APP_ID");
+ if (StringUtil.isEmpty(appId)) {
+ appId = request.getHeader("APP-ID");
+ }
+
+ IPageData newPd = PageData.newInstance().builder(pd.getUserId(), pd.getUserName(), pd.getToken(), postInfo,
+ "", "", "", pd.getSessionId(),
+ appId);
+ return toPayOweFeeSMOImpl.toPay(newPd);
+ }
+
+ /**
+ * <p>缁熶竴涓嬪崟鍏ュ彛</p>
+ *
+ * @param request
+ * @throws Exception
+ */
@RequestMapping(path = "/toPayTempCarInout", method = RequestMethod.POST)
public ResponseEntity<String> toPayTempCarInout(@RequestBody String postInfo, HttpServletRequest request) {
IPageData pd = (IPageData) request.getAttribute(CommonConstant.CONTEXT_PAGE_DATA);
/*IPageData pd = (IPageData) request.getAttribute(CommonConstant.CONTEXT_PAGE_DATA);*/
String appId = request.getHeader("APP_ID");
- if(StringUtil.isEmpty(appId)){
+ if (StringUtil.isEmpty(appId)) {
appId = request.getHeader("APP-ID");
}
IPageData newPd = PageData.newInstance().builder(pd.getUserId(), pd.getUserName(), pd.getToken(), postInfo,
@@ -89,9 +123,77 @@
logger.debug("寰俊鏀粯鍥炶皟鎶ユ枃" + postInfo);
- return toNotifySMOImpl.toNotify(postInfo,request);
+ return toNotifySMOImpl.toNotify(postInfo, request);
}
+ /**
+ * <p>鍑虹缁熶竴涓嬪崟鍏ュ彛</p>
+ *
+ * @param request
+ * @throws Exception
+ */
+ @RequestMapping(path = "/rentingToPay", method = RequestMethod.POST)
+ public ResponseEntity<String> rentingToPay(@RequestBody String postInfo, HttpServletRequest request) {
+ IPageData pd = (IPageData) request.getAttribute(CommonConstant.CONTEXT_PAGE_DATA);
+ String appId = request.getHeader("APP_ID");
+ if (StringUtil.isEmpty(appId)) {
+ appId = request.getHeader("APP-ID");
+ }
+
+ IPageData newPd = PageData.newInstance().builder(pd.getUserId(), pd.getUserName(), pd.getToken(), postInfo,
+ "", "", "", pd.getSessionId(),
+ appId);
+ return rentingToPaySMOImpl.toPay(newPd);
+ }
+
+ /**
+ * <p>鍑虹缁熶竴涓嬪崟鍏ュ彛</p>
+ *
+ * @param request
+ * @throws Exception
+ */
+ @RequestMapping(path = "/oweFeeNotify", method = RequestMethod.POST)
+ public ResponseEntity<String> oweFeeNotify(@RequestBody String postInfo, HttpServletRequest request) {
+ logger.debug("寰俊鏀粯鍥炶皟鎶ユ枃" + postInfo);
+
+ return oweFeeToNotifySMOImpl.toNotify(postInfo,request);
+ }
+ /**
+ * <p>鏀粯鍥炶皟Api</p>
+ *
+ * @param request
+ * @throws Exception
+ */
+ @RequestMapping(path = "/rentingNotify", method = RequestMethod.POST)
+ public ResponseEntity<String> rentingNotify(@RequestBody String postInfo, HttpServletRequest request) {
+
+ logger.debug("寰俊鏀粯鍥炶皟鎶ユ枃" + postInfo);
+
+ return rentingToNotifySMOImpl.toNotify(postInfo, request);
+
+
+ }
+
+ /**
+ * <p>鍑虹缁熶竴涓嬪崟鍏ュ彛</p>
+ *
+ * @param request
+ * @throws Exception
+ */
+ @RequestMapping(path = "/toQrOweFeePay", method = RequestMethod.POST)
+ public ResponseEntity<String> toQrOweFeePay(@RequestBody String postInfo, HttpServletRequest request) {
+ IPageData pd = (IPageData) request.getAttribute(CommonConstant.CONTEXT_PAGE_DATA);
+ String appId = request.getHeader("APP_ID");
+ if (StringUtil.isEmpty(appId)) {
+ appId = request.getHeader("APP-ID");
+ }
+
+ IPageData newPd = PageData.newInstance().builder(pd.getUserId(), pd.getUserName(), pd.getToken(), postInfo,
+ "", "", "", pd.getSessionId(),
+ appId);
+ return toQrPayOweFeeSMOImpl.toPay(newPd);
+ }
+
}
--
Gitblit v1.8.0