From 3f1dc57d57ef0ceafcc59cd5ce34ff90cfe6d146 Mon Sep 17 00:00:00 2001
From: 1098226878 <1098226878@qq.com>
Date: 星期一, 13 九月 2021 17:06:16 +0800
Subject: [PATCH] 优化代码

---
 service-community/src/main/java/com/java110/community/dao/impl/CommunityServiceDaoImpl.java |   19 +++++++++++++++++++
 1 files changed, 19 insertions(+), 0 deletions(-)

diff --git a/service-community/src/main/java/com/java110/community/dao/impl/CommunityServiceDaoImpl.java b/service-community/src/main/java/com/java110/community/dao/impl/CommunityServiceDaoImpl.java
old mode 100644
new mode 100755
index 2b3fc36..f1626bb
--- a/service-community/src/main/java/com/java110/community/dao/impl/CommunityServiceDaoImpl.java
+++ b/service-community/src/main/java/com/java110/community/dao/impl/CommunityServiceDaoImpl.java
@@ -480,4 +480,23 @@
         return Integer.parseInt(businessCommunityInfos.get(0).get("count").toString());
     }
 
+    @Override
+    public List<Map> getStoreCommunitys(Map info) {
+        logger.debug("鏌ヨ灏忓尯淇℃伅 鍏ュ弬 info : {}", info);
+
+        List<Map> businessCommunityInfos = sqlSessionTemplate.selectList("communityServiceDaoImpl.getStoreCommunitys", info);
+
+        return businessCommunityInfos;
+    }
+
+    @Override
+    public int saveCommunityAttr(Map info) {
+        logger.debug("灏忓尯鎴愬憳鍔犲叆Instance 鍏ュ弬 info : {}", info);
+
+        int saveFlag = sqlSessionTemplate.insert("communityServiceDaoImpl.saveCommunityAttr", info);
+
+        return saveFlag;
+    }
+
+
 }

--
Gitblit v1.8.0