old mode 100644
new mode 100755
| | |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.java110.config.feign.FeignConfiguration; |
| | | import com.java110.dto.businessDatabus.CustomBusinessDatabusDto; |
| | | import com.java110.dto.machine.MachineDto; |
| | | import com.java110.dto.tempCarFeeConfig.TempCarPayOrderDto; |
| | | import com.java110.entity.order.Business; |
| | | import com.java110.po.machine.MachineRecordPo; |
| | |
| | | * @Version 1.0 |
| | | * add by wuxw 2019/4/24 |
| | | **/ |
| | | @FeignClient(name = "job-service", configuration = {FeignConfiguration.class}) |
| | | @FeignClient(name = "${java110.job-service}", configuration = {FeignConfiguration.class}) |
| | | @RequestMapping("/dataBusApi") |
| | | public interface IDataBusInnerServiceSMO { |
| | | |
| | |
| | | */ |
| | | @RequestMapping(value = "/customExchange", method = RequestMethod.POST) |
| | | void customExchange(@RequestBody CustomBusinessDatabusDto customBusinessDatabusDto); |
| | | |
| | | @RequestMapping(value = "/getQRcode", method = RequestMethod.POST) |
| | | ResultVo getQRcode(@RequestBody JSONObject reqJson); |
| | | |
| | | @RequestMapping(value = "/customCarInOut", method = RequestMethod.POST) |
| | | ResultVo customCarInOut(@RequestBody JSONObject reqJson); |
| | | |
| | | @RequestMapping(value = "/payVideo", method = RequestMethod.POST) |
| | | ResultVo payVideo(@RequestBody MachineDto machineDto); |
| | | |
| | | @RequestMapping(value = "/heartbeatVideo", method = RequestMethod.POST) |
| | | ResultVo heartbeatVideo(@RequestBody JSONObject reqJson); |
| | | } |