From 03f42f3e256dbc2e0c4e9b7ce3cb6a85df7cf130 Mon Sep 17 00:00:00 2001
From: tangzy <tangzy123456>
Date: Fri, 27 Aug 2021 20:40:40 +0800
Subject: [PATCH] 1.统计
---
src/main/java/org/springblade/modules/information/service/impl/InformationServiceImpl.java | 24 +++++++++++++++++++-----
1 files changed, 19 insertions(+), 5 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 c7d9054..ef75c0b 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
@@ -58,7 +58,7 @@
public class InformationServiceImpl extends ServiceImpl<InformationMapper, Information> implements IInformationService {
@Override
- public IPage<Information> selectInformationPage(IPage<Information> page, Information information) {
+ public IPage<InformationVO> selectInformationPage(IPage<InformationVO> page, InformationVO information) {
return page.setRecords(baseMapper.selectInformationPage(page, information));
}
@@ -70,6 +70,11 @@
@Override
public void deleteSh(String creditcode) {
baseMapper.deleteSh(creditcode);
+ }
+
+ @Override
+ public void insertIn( Information information) {
+ baseMapper.insertIn(information);
}
@Override
@@ -93,13 +98,13 @@
}
@Override
- public List<Map<Object, Object>> selectExtype(String deptid) {
- return baseMapper.selectExtype(deptid);
+ public List<Map<Object, Object>> selectExtype(String deptid,String jurisdiction) {
+ return baseMapper.selectExtype(deptid,jurisdiction);
}
@Override
- public List<Map<Object, Object>> selectHold(String deptid) {
- return baseMapper.selectHold(deptid);
+ public List<Map<Object, Object>> selectHold(String deptid,String jurisdiction) {
+ return baseMapper.selectHold(deptid,jurisdiction);
}
@Override
@@ -115,6 +120,11 @@
@Override
public List<Map<Object, Object>> selectSoil(String deptid) {
return baseMapper.selectSoil(deptid);
+ }
+
+ @Override
+ public Map<String, String> queryYearKh(String year, String jurisdiction, String deptid) {
+ return baseMapper.queryYearKh(year, jurisdiction, deptid);
}
/**
@@ -148,6 +158,10 @@
if (information.getStats().equals("武装守押公司")) {
information.setStats("3");
}
+ //跨区域保安公司
+ if (information.getStats().equals("跨区域保安公司")) {
+ information.setStats("4");
+ }
try {
arg.test01(arg.url+"/information/save",information);
} catch (Exception e) {
--
Gitblit v1.9.3