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);
|
}
|