From 5589528feb385d7881f8dbf9314b3abf5d4f4e9e Mon Sep 17 00:00:00 2001
From: Your Name <you@example.com>
Date: 星期五, 27 一月 2023 19:21:11 +0800
Subject: [PATCH] 优化 房屋页面查询功能
---
service-community/src/main/java/com/java110/community/dao/impl/InspectionPlanStaffV1ServiceDaoImpl.java | 13 +++++++++++++
1 files changed, 13 insertions(+), 0 deletions(-)
diff --git a/service-community/src/main/java/com/java110/community/dao/impl/InspectionPlanStaffV1ServiceDaoImpl.java b/service-community/src/main/java/com/java110/community/dao/impl/InspectionPlanStaffV1ServiceDaoImpl.java
index e584cc7..827022d 100644
--- a/service-community/src/main/java/com/java110/community/dao/impl/InspectionPlanStaffV1ServiceDaoImpl.java
+++ b/service-community/src/main/java/com/java110/community/dao/impl/InspectionPlanStaffV1ServiceDaoImpl.java
@@ -108,5 +108,18 @@
return Integer.parseInt(businessInspectionPlanStaffInfos.get(0).get("count").toString());
}
+ /**
+ * 鏍规嵁鍛樺伐鏌ヨ宸℃鎯呭喌
+ * @param info
+ * @return
+ */
+ @Override
+ public List<Map> queryStaffInspectionReport(Map info) {
+ logger.debug("鏌ヨ queryStaffInspectionReport 鍏ュ弬 info : {}",info);
+
+ List<Map> businessInspectionPlanStaffInfos = sqlSessionTemplate.selectList("inspectionPlanStaffV1ServiceDaoImpl.queryStaffInspectionReport",info);
+
+ return businessInspectionPlanStaffInfos; }
+
}
--
Gitblit v1.8.0