From 69fc19b39d8f93e99bd76248fb020d43cd4c3fd0 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期日, 05 四月 2020 00:06:05 +0800
Subject: [PATCH] 侦听生成巡检任务
---
java110-core/src/main/java/com/java110/core/smo/owner/IOwnerInnerServiceSMO.java | 23 +++++++++++++++++++++--
1 files changed, 21 insertions(+), 2 deletions(-)
diff --git a/java110-core/src/main/java/com/java110/core/smo/owner/IOwnerInnerServiceSMO.java b/java110-core/src/main/java/com/java110/core/smo/owner/IOwnerInnerServiceSMO.java
index a9a4501..7211a15 100644
--- a/java110-core/src/main/java/com/java110/core/smo/owner/IOwnerInnerServiceSMO.java
+++ b/java110-core/src/main/java/com/java110/core/smo/owner/IOwnerInnerServiceSMO.java
@@ -1,8 +1,8 @@
package com.java110.core.smo.owner;
import com.java110.core.feign.FeignConfiguration;
-import com.java110.dto.OwnerDto;
-import org.springframework.cloud.netflix.feign.FeignClient;
+import com.java110.dto.owner.OwnerDto;
+import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@@ -79,4 +79,23 @@
@RequestMapping(value = "/queryNoEnterRoomOwnerCount", method = RequestMethod.POST)
int queryNoEnterRoomOwnerCount(@RequestBody OwnerDto ownerDto);
+ /**
+ * 鏍规嵁鎴垮眿鏌ヨ涓氫富淇℃伅
+ *
+ * @param ownerDto 鏁版嵁瀵硅薄鍒嗕韩
+ * @return 灏忓尯涓嬬殑灏忓尯妤艰褰曟暟
+ */
+ @RequestMapping(value = "/queryOwnersByRoom", method = RequestMethod.POST)
+ List<OwnerDto> queryOwnersByRoom(@RequestBody OwnerDto ownerDto);
+
+
+ /**
+ * 鏍规嵁鍋滆溅浣嶆煡璇笟涓讳俊鎭�
+ *
+ * @param ownerDto 鏁版嵁瀵硅薄鍒嗕韩
+ * @return 灏忓尯涓嬬殑灏忓尯妤艰褰曟暟
+ */
+ @RequestMapping(value = "/queryOwnersByParkingSpace", method = RequestMethod.POST)
+ List<OwnerDto> queryOwnersByParkingSpace(@RequestBody OwnerDto ownerDto);
+
}
--
Gitblit v1.8.0