From 14a40c7f64e2d87cc7b2452f1c1f1211013eafb1 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期四, 02 十一月 2023 22:05:12 +0800
Subject: [PATCH] 加入数据导入框架
---
service-community/src/main/java/com/java110/community/dao/impl/CommunityV1ServiceDaoImpl.java | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/service-community/src/main/java/com/java110/community/dao/impl/CommunityV1ServiceDaoImpl.java b/service-community/src/main/java/com/java110/community/dao/impl/CommunityV1ServiceDaoImpl.java
index d7265c9..baf80cd 100644
--- a/service-community/src/main/java/com/java110/community/dao/impl/CommunityV1ServiceDaoImpl.java
+++ b/service-community/src/main/java/com/java110/community/dao/impl/CommunityV1ServiceDaoImpl.java
@@ -108,5 +108,14 @@
return Integer.parseInt(businessCommunityInfos.get(0).get("count").toString());
}
+ @Override
+ public List<Map> queryCommunityAndPropertys(Map info) {
+ logger.debug("鏌ヨ getCommunityInfo 鍏ュ弬 info : {}",info);
+
+ List<Map> infos = sqlSessionTemplate.selectList("communityV1ServiceDaoImpl.queryCommunityAndPropertys",info);
+
+ return infos;
+ }
+
}
--
Gitblit v1.8.0