From b8e7bb1791ff41be5ee8150cc46af082d7444a65 Mon Sep 17 00:00:00 2001
From: Your Name <you@example.com>
Date: 星期三, 31 五月 2023 01:02:29 +0800
Subject: [PATCH] Merge branch 'master' of http://git.homecommunity.cn/supervip/MicroCommunity
---
java110-interface/src/main/java/com/java110/intf/job/IDataBusInnerServiceSMO.java | 16 +++++++++++++++-
1 files changed, 15 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 95f0382..cc525b2 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,7 @@
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;
@@ -23,7 +24,7 @@
* @Version 1.0
* add by wuxw 2019/4/24
**/
-@FeignClient(name = "${java110.job-service}", configuration = {FeignConfiguration.class})
+@FeignClient(name = "job-service", configuration = {FeignConfiguration.class})
@RequestMapping("/dataBusApi")
public interface IDataBusInnerServiceSMO {
@@ -45,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>
@@ -96,4 +105,9 @@
@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