From 8234e14fcae7596f733abf8a20578b608a951dd8 Mon Sep 17 00:00:00 2001
From: tangzy <tangzy123456>
Date: Tue, 27 Jul 2021 11:01:40 +0800
Subject: [PATCH] 1.统计接口调整
---
src/main/java/org/springblade/modules/information/service/impl/InformationServiceImpl.java | 14 ++++++++++++--
1 files changed, 12 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..6c22415 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,15 @@
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);
+ }
+
}
--
Gitblit v1.9.3