From ccebbfd35eca5cd24eb3e32f7c1158e0596c471c Mon Sep 17 00:00:00 2001
From: tangzy <tangzy123456>
Date: Tue, 27 Jul 2021 15:34:53 +0800
Subject: [PATCH] 1.统计接口调整
---
src/main/java/org/springblade/modules/information/service/impl/InformationServiceImpl.java | 19 +++++++++++++++++--
1 files changed, 17 insertions(+), 2 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 3d5d723..d1d9805 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
@@ -141,7 +141,7 @@
}
@Override
- public List<Map<Object, Integer>> selectExtype(String jurisdiction, String deptid) {
+ public List<Map<Object, Object>> selectExtype(String jurisdiction, String deptid) {
return baseMapper.selectExtype(jurisdiction, deptid);
}
@@ -151,7 +151,7 @@
}
@Override
- public List<Map<Object, Integer>> selectBx(String jurisdiction, String deptid) {
+ public List<Map<Object, Object>> selectBx(String jurisdiction, String deptid) {
return baseMapper.selectBx(jurisdiction, deptid);
}
@@ -160,5 +160,20 @@
return baseMapper.queryYearDe(year, jurisdiction, deptid);
}
+ @Override
+ public Map selectPcount(String jurisdiction, String deptid) {
+ return baseMapper.selectPcount(jurisdiction, deptid);
+ }
+
+ @Override
+ public Map selectWPcount(String jurisdiction, String deptid) {
+ return baseMapper.selectWPcount(jurisdiction, deptid);
+ }
+
+ @Override
+ public List<Map<Object, Object>> selectIn(String jurisdiction) {
+ return baseMapper.selectIn(jurisdiction);
+ }
+
}
--
Gitblit v1.9.3