From 60b96e9221632debb08aaf5fb7abd8361a90c0fb Mon Sep 17 00:00:00 2001
From: zhongrj <646384940@qq.com>
Date: Wed, 31 Jan 2024 19:59:33 +0800
Subject: [PATCH] 社区新增面,网格员网格处理调整

---
 src/main/java/org/springblade/modules/community/service/ICommunityService.java |   18 ++++++++++++++++++
 1 files changed, 18 insertions(+), 0 deletions(-)

diff --git a/src/main/java/org/springblade/modules/community/service/ICommunityService.java b/src/main/java/org/springblade/modules/community/service/ICommunityService.java
index fed076a..3f0c549 100644
--- a/src/main/java/org/springblade/modules/community/service/ICommunityService.java
+++ b/src/main/java/org/springblade/modules/community/service/ICommunityService.java
@@ -18,6 +18,7 @@
 
 import com.baomidou.mybatisplus.extension.service.IService;
 import org.springblade.modules.community.entity.CommunityEntity;
+import org.springblade.modules.community.excel.CommunityExcel;
 import org.springblade.modules.community.vo.CommunityVO;
 import com.baomidou.mybatisplus.core.metadata.IPage;
 
@@ -47,4 +48,21 @@
 	 * @return
 	 */
     List<String> getCommunityCodeListByUserId(Long userId);
+
+	/**
+	 * 导入社区数据
+	 * @param data
+	 * @param isCovered
+	 */
+	void importCommunity(List<CommunityExcel> data, Boolean isCovered);
+
+	/**
+	 * 社区表 自定义新增或修改
+	 */
+	boolean saveOrUpdateCommunityEntity(CommunityEntity community);
+
+	/**
+	 * 社区表 自定义详情
+	 */
+	CommunityVO getDetail(CommunityEntity community);
 }

--
Gitblit v1.9.3