1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
| package com.nanometer.smartlab.service;
|
| import com.nanometer.smartlab.entity.HazardousWaste;
|
| import java.util.Date;
| import java.util.List;
| import java.util.Map;
|
| public interface HazardousWasteService {
|
| List<HazardousWaste> selectAll(Date startTime, Date endTime,String status,String applyPerson,Long projectId,String department,String tid,Integer offset, Integer pageSize);
|
| int countAll(Date startTime, Date endTime,String status,String applyPerson,Long projectId,String department,String tid);
|
| List<Map> exportList(Date startTime, Date endTime, String status, String applyPerson, Long project, String department,String tid);
|
| void export2Excel(List<Map> list) throws Exception;
|
| int countStatistics(Date startTime, Date endTime, String status, String applyPerson, Long projectId, String department);
|
| List<HazardousWaste> selectStatistics(Date startTime, Date endTime, String status, String applyPerson, Long projectId, String department, int first, int pageSize);
|
| List<Map> exportStatisticsList(Date startTime, Date endTime, String status, String applyPerson, Long projectId, 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);
| }
|
|