zss
2023-08-23 36488ef509030773381ea67de9d1aa00ce25caf6
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
39
40
41
42
43
package com.yuanchu.limslaboratory.service.impl;
 
import com.yuanchu.limslaboratory.mapper.WorkMapper;
import com.yuanchu.limslaboratory.pojo.LineChartVO;
import com.yuanchu.limslaboratory.service.WorkService;
import org.springframework.stereotype.Service;
 
import javax.annotation.Resource;
import java.util.List;
import java.util.Map;
 
@Service
public class WorkServiceImpl implements WorkService {
 
    @Resource
    WorkMapper workMapper;
 
 
    //责任人项目数统计
    @Override
    public List<Map<String,Object>> dutyMater(String startTime, String endTime, Integer type) {
        return  workMapper.dutyMater(startTime,endTime,type);
    }
 
 
    //执行人项目数统计
    @Override
    public List<Map<String,Object>> executeMater(String startTime, String endTime, Integer type) {
        return workMapper.executeMater(startTime,endTime,type);
    }
 
    //责任人及时率
    @Override
    public List<Map<String, Object>> dutytimely(String startTime, String endTime, Integer type) {
        return workMapper.dutytimely(startTime,endTime,type);
    }
 
    //执行人及时率
    @Override
    public List<Map<String, Object>> executetimely(String startTime, String endTime, Integer type) {
        return workMapper.executetimely(startTime,endTime,type);
    }
}