yangys
2024-03-27 e48aa2ac8dea1be5db11c63edf0b912c4ad5ce65
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
package com.qianwen.smartman.modules.mdc.service;
 
import java.time.LocalDate;
import java.util.List;
import com.qianwen.smartman.modules.mdc.entity.SuperAggregateOutput;
import com.qianwen.smartman.modules.mdc.enums.StatisticalMethodEnum;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/service/ISuperAggregateOutputService.class */
public interface ISuperAggregateOutputService {
    List<SuperAggregateOutput> getOutputData(List<Long> workstationIds, StatisticalMethodEnum statisticalMethod, LocalDate startDate, LocalDate endDate);
 
    List<SuperAggregateOutput> queryPerfByDay(Long workstationId, String startTime, String endTime, Long employeeId);
 
    List<SuperAggregateOutput> queryPerfByWeek(Long workstationId, List<Integer> weeks, Long employeeId);
 
    List<SuperAggregateOutput> queryPerfByMonth(Long workstationId, List<Integer> months, Long employeeId);
 
    List<SuperAggregateOutput> queryPerfByEtDay(Long employeeId, String time);
 
    List<SuperAggregateOutput> queryPerfByEtWeek(Long employeeId, Integer week);
 
    List<SuperAggregateOutput> queryPerfByEtMonth(Long employeeId, Integer month);
 
    List<SuperAggregateOutput> queryPerfByWtDay(Long workstationId, String time);
 
    List<SuperAggregateOutput> queryPerfByWtWeek(Long workstationId, Integer week);
 
    List<SuperAggregateOutput> queryPerfByWtMonth(Long workstationId, Integer month);
}