java110
2020-09-25 837efd85408f632270c1feab581e4cb4de515b13
service-front/src/main/java/com/java110/front/controller/PaymentController.java
@@ -29,6 +29,9 @@
    private IToPaySMO toPaySMOImpl;
    @Autowired
    private IToPayOweFeeSMO toPayOweFeeSMOImpl;
    @Autowired
    private IRentingToPaySMO rentingToPaySMOImpl;
    @Autowired
@@ -39,6 +42,9 @@
    @Autowired
    private IRentingToNotifySMO rentingToNotifySMOImpl;
    @Autowired
    private IOweFeeToNotifySMO oweFeeToNotifySMOImpl;
@@ -61,6 +67,27 @@
                "", "", "", pd.getSessionId(),
                appId);
        return toPaySMOImpl.toPay(newPd);
    }
    /**
     * <p>统一下单入口</p>
     *
     * @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);
    }
    /**
@@ -121,6 +148,18 @@
    }
    /**
     * <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