From 93000441daeeabce0696bb32c5335e10740916d6 Mon Sep 17 00:00:00 2001
From: tangzy <tangzy123456>
Date: Mon, 12 Jul 2021 09:23:17 +0800
Subject: [PATCH] 1.

---
 src/main/java/org/springblade/modules/information/service/impl/InformationServiceImpl.java |   15 ++++++++++++++-
 1 files changed, 14 insertions(+), 1 deletions(-)

diff --git a/src/main/java/org/springblade/modules/information/service/impl/InformationServiceImpl.java b/src/main/java/org/springblade/modules/information/service/impl/InformationServiceImpl.java
index 6a2a211..f772b3c 100644
--- a/src/main/java/org/springblade/modules/information/service/impl/InformationServiceImpl.java
+++ b/src/main/java/org/springblade/modules/information/service/impl/InformationServiceImpl.java
@@ -24,6 +24,9 @@
 import org.springframework.stereotype.Service;
 import com.baomidou.mybatisplus.core.metadata.IPage;
 
+import java.util.List;
+import java.util.Map;
+
 /**
  *  服务实现类
  *
@@ -34,7 +37,7 @@
 public class InformationServiceImpl extends ServiceImpl<InformationMapper, Information> implements IInformationService {
 
 	@Override
-	public IPage<InformationVO> selectInformationPage(IPage<InformationVO> page, InformationVO information) {
+	public IPage<Information> selectInformationPage(IPage<Information> page, Information information) {
 		return page.setRecords(baseMapper.selectInformationPage(page, information));
 	}
 
@@ -53,4 +56,14 @@
 		baseMapper.deleteMe(creditcode);
 	}
 
+	@Override
+	public Map selectCount(String departmentid) {
+		return baseMapper.selectCount(departmentid);
+	}
+
+	@Override
+	public List<Map<Object, String>> selectInCount() {
+		return baseMapper.selectInCount();
+	}
+
 }

--
Gitblit v1.9.3