package com.java110.api.controller.app; import com.alibaba.fastjson.JSONObject; import com.java110.api.smo.payment.ITempCarFeeToNotifySMO; import com.java110.core.base.controller.BaseController; import com.java110.core.log.LoggerFactory; import org.slf4j.Logger; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController; import javax.servlet.http.HttpServletRequest; import javax.xml.ws.Action; import java.util.Map; @RestController @RequestMapping(path = "/app/alipay/notify") public class AliPayNotifyController extends BaseController { private final static Logger logger = LoggerFactory.getLogger(PaymentController.class); @Autowired private ITempCarFeeToNotifySMO tempCarFeeToNotifySMOImpl; /** *
支付回调Api
* * @param request * @throws Exception */ @RequestMapping(path = "/receive", method = RequestMethod.POST) public ResponseEntity