yangys
2024-10-30 c27b939fa5fa6ce4d712f7e9ced2ad811d69d5ec
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
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;
 
public interface ISuperAggregateOutputService {
    /**
     * 产量数据
     * @param workstationIds
     * @param statisticalMethod
     * @param startDate
     * @param endDate
     * @return
     */
    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);
}