From 3ae57f026d9199f587fd25160e98d19572a30541 Mon Sep 17 00:00:00 2001
From: lyfO_o <764716047@qq.com>
Date: Wed, 30 Mar 2022 16:53:33 +0800
Subject: [PATCH] 1.柜子温湿浓度最大小值 2.新增柜子搜索当年月份
---
src/main/java/com/nanometer/smartlab/service/HazardousWasteService.java | 27 +++++++++++++++++++++++++--
1 files changed, 25 insertions(+), 2 deletions(-)
diff --git a/src/main/java/com/nanometer/smartlab/service/HazardousWasteService.java b/src/main/java/com/nanometer/smartlab/service/HazardousWasteService.java
index 32ef20e..bc8d821 100644
--- a/src/main/java/com/nanometer/smartlab/service/HazardousWasteService.java
+++ b/src/main/java/com/nanometer/smartlab/service/HazardousWasteService.java
@@ -8,8 +8,31 @@
public interface HazardousWasteService {
- List<HazardousWaste> selectAll(Date startTime, Date endTime, Integer offset, Integer pageSize);
+ List<HazardousWaste> selectAll(Date startTime, Date endTime,String status,String applyPerson,String project,String department,String tid,Integer offset, Integer pageSize);
- int countAll(Date startTime, Date endTime);
+ int countAll(Date startTime, Date endTime,String status,String applyPerson,String project,String department,String tid);
+ List<Map> exportList(Date startTime, Date endTime, String status, String applyPerson, String project, String department,String tid);
+
+ void export2Excel(List<Map> list) throws Exception;
+
+ int countStatistics(Date startTime, Date endTime, String status, String applyPerson, String project, String department);
+
+ List<HazardousWaste> selectStatistics(Date startTime, Date endTime, String status, String applyPerson, String project, String department, int first, int pageSize);
+
+ List<Map> exportStatisticsList(Date startTime, Date endTime, String status, String applyPerson, String project, String department);
+
+ void exportStatistics2Excel(List<Map> list)throws Exception;
+
+ void insertInfo(HazardousWaste hazardousWaste);
+
+ List<HazardousWaste> setAllWasters(String starttime, String endtime, String status, String applyPerson);
+
+ HazardousWaste selectByTid(String tid);
+
+ void updateWaste(HazardousWaste hazardousWaste);
+
+ List<HazardousWaste> setAllWasterCount(String starttime, String endtime, String status, String applyPerson);
+
+ HazardousWaste selectById(Long id);
}
--
Gitblit v1.9.2