Fixiaobai
2023-09-01 060fc21c293f3eabcd544602da305e4e83803b42
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.yuanchu.limslaboratory.mapper;
 
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
import java.util.Map;
 
@Mapper
public interface WorkMapper {
    //责任人项目数统计
    List<Map<String, Object>> dutyMater(String startTime, String endTime, Integer type);
 
    //执行人项目数统计
    List<Map<String, Object>> executeMater(String startTime, String endTime, Integer type);
 
    //责任人及时率
    List<Map<String, Object>> dutytimely(String startTime, String endTime, Integer type);
 
    //执行人及时率
    List<Map<String, Object>> executetimely(String startTime, String endTime, Integer type);
}