|
@@ -22,6 +22,10 @@ public class CusWaybillController {
|
|
|
@Autowired
|
|
|
private Ceb511Response ceb511Response;
|
|
|
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ * @return
|
|
|
+ */
|
|
|
@RequestMapping("/wx/cusWaybill")
|
|
|
public ResponseMessage cusWaybill() {
|
|
|
LOGGER.info("---------- 支付单数据开始 ----------------------------------------");
|
|
@@ -30,11 +34,16 @@ public class CusWaybillController {
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * OMS清关回调处理
|
|
|
+ * @param result
|
|
|
+ * @return
|
|
|
+ */
|
|
|
@RequestMapping(value = "/wx/cusWaybillResponse", method = RequestMethod.POST)
|
|
|
public ResponseMessage cusWaybillResponse(@RequestBody Result result) {
|
|
|
- LOGGER.info("---------- 支付单数据开始 ----------------------------------------");
|
|
|
+ LOGGER.info("---------- OMS清关回调处理处理开始开始 ----------------------------------------");
|
|
|
ResponseMessage responseMessage = ceb511Response.biz(result);
|
|
|
- LOGGER.info("---------- 支付单数据结束 ----------------------------------------");
|
|
|
+ LOGGER.info("---------- 支OMS清关回调处理处理开始结束 ----------------------------------------");
|
|
|
return responseMessage;
|
|
|
}
|
|
|
|