From d5470fd2c8a9df43c51b62b54372bf8ebf2ba56d Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期二, 22 十一月 2022 01:35:06 +0800
Subject: [PATCH] 加入优惠券赠送规则

---
 java110-interface/src/main/java/com/java110/intf/job/IDataBusInnerServiceSMO.java |   26 +++++++++++++++++++++++++-
 1 files changed, 25 insertions(+), 1 deletions(-)

diff --git a/java110-interface/src/main/java/com/java110/intf/job/IDataBusInnerServiceSMO.java b/java110-interface/src/main/java/com/java110/intf/job/IDataBusInnerServiceSMO.java
index 9c69386..990a2a2 100755
--- a/java110-interface/src/main/java/com/java110/intf/job/IDataBusInnerServiceSMO.java
+++ b/java110-interface/src/main/java/com/java110/intf/job/IDataBusInnerServiceSMO.java
@@ -3,6 +3,8 @@
 import com.alibaba.fastjson.JSONObject;
 import com.java110.config.feign.FeignConfiguration;
 import com.java110.dto.businessDatabus.CustomBusinessDatabusDto;
+import com.java110.dto.machine.CarInoutDto;
+import com.java110.dto.machine.MachineDto;
 import com.java110.dto.tempCarFeeConfig.TempCarPayOrderDto;
 import com.java110.entity.order.Business;
 import com.java110.po.machine.MachineRecordPo;
@@ -22,7 +24,7 @@
  * @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 {
 
@@ -44,6 +46,14 @@
      */
     @RequestMapping(value = "/openDoor", method = RequestMethod.POST)
     ResultVo openDoor(@RequestBody JSONObject reqJson);
+    /**
+     * <p>寮�闂�</p>
+     *
+     * @param reqJson 璇锋眰淇℃伅
+     * @return TaskDto 瀵硅薄鏁版嵁
+     */
+    @RequestMapping(value = "/closeDoor", method = RequestMethod.POST)
+    ResultVo closeDoor(@RequestBody JSONObject reqJson);
 
     /**
      * <p>閲嶅惎璁惧</p>
@@ -86,4 +96,18 @@
 
     @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);
+    @RequestMapping(value = "/updateCarInoutCarNum", method = RequestMethod.POST)
+    ResultVo updateCarInoutCarNum(@RequestBody CarInoutDto carInoutDto);
+
+    @RequestMapping(value = "/getManualOpenDoorLogs", method = RequestMethod.POST)
+    ResultVo getManualOpenDoorLogs(@RequestBody JSONObject reqJson);
 }

--
Gitblit v1.8.0