package com.java110.api.controller.app.charge; import com.alibaba.fastjson.JSONObject; import com.java110.core.base.controller.BaseController; import com.java110.core.log.LoggerFactory; import com.java110.dto.chargeMachine.NotifyChargeOrderDto; import com.java110.intf.common.INotifyChargeV1InnerServiceSMO; import com.java110.vo.ResultVo; import org.slf4j.Logger; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.RequestBody; 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; @RestController @RequestMapping(path = "/app/charge/kehang") public class NotifyKeHangChargeController extends BaseController { private final static Logger logger = LoggerFactory.getLogger(NotifyKeHangChargeController.class); private static final String FINISH_CHARGE = "net.equip.charge.slow.async.notice.finish"; @Autowired private INotifyChargeV1InnerServiceSMO notifyChargeV1InnerServiceSMOImpl; /** *
支付回调Api
* * @param request * @throws Exception */ @RequestMapping(path = "/notice", method = RequestMethod.POST) public ResponseEntity