package com.java110.api.controller.app.smartWeter; import com.java110.core.base.controller.BaseController; import com.java110.core.log.LoggerFactory; import com.java110.dto.meter.NotifyMeterWaterOrderDto; import com.java110.intf.common.INotifySmartMeterV1InnerServiceSMO; import org.slf4j.Logger; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.*; import javax.servlet.http.HttpServletRequest; @RestController @RequestMapping(path = "/app/smartMeter/notify") public class NotifySmartMeterController extends BaseController{ private final static Logger logger = LoggerFactory.getLogger(NotifySmartMeterController.class); @Autowired private INotifySmartMeterV1InnerServiceSMO notifySmartWeterV1InnerServiceSMOImpl; /** *

支付回调Api

* * @param request * @throws Exception */ @RequestMapping(path = "/{implBean}", method = RequestMethod.POST) public ResponseEntity notifyTq( @PathVariable String implBean, @RequestBody String postInfo, HttpServletRequest request) { String appId = "992020051967020024"; //todo 为啥写的这么挫 因为拓强的电表 回调路径太长 他会失败 switch (implBean) { case "a": implBean = "tqDianBiaoDanxiangDanFeiLvFactoryAdaptImpl"; break; case "b": implBean = "tqDianBiaoRemoteDanFeiLvPreFactoryAdaptImpl"; break; case "c": implBean = "tqShuiBiaoLoraReadFactoryAdaptImpl"; break; case "d": implBean = "tqShuiBiaoLoraRechargeFactoryAdaptImpl"; break; default: } return notifySmartWeterV1InnerServiceSMOImpl.notifySmartMater(new NotifyMeterWaterOrderDto(appId, postInfo, implBean)); } /** *

支付回调Api

* * @param request * @throws Exception */ @RequestMapping(path = "/{implBean}/{appId}", method = RequestMethod.POST) public ResponseEntity notify( @PathVariable String implBean, @PathVariable String appId, @RequestBody String postInfo, HttpServletRequest request) { return notifySmartWeterV1InnerServiceSMOImpl.notifySmartMater(new NotifyMeterWaterOrderDto(appId,postInfo,implBean)); } }