Lius
2024-10-09 33aea4a7532fcaddbd4262e51900b5102c0aa07c
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
package org.jeecg.modules.screen.mapper;
 
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.jeecg.modules.mdc.dto.MdcEfficiencyDto;
import org.jeecg.modules.mdcJc.entity.MdcProductDayschedule;
import org.jeecg.modules.screen.dto.ClazzCompletionCountDto;
import org.jeecg.modules.screen.dto.TodayProductionDto;
import org.springframework.stereotype.Repository;
 
import java.math.BigDecimal;
import java.util.List;
 
/**
 * @author Lius
 * @date 2024/8/21 11:09
 */
@Mapper
@Repository
public interface MdcLargeScreenMapper {
 
    BigDecimal findEquipmentCount(@Param("date") String date);
 
    BigDecimal findYesterdayProcessCount(@Param("date") String date);
 
    List<TodayProductionDto> todayProductionSchedule(@Param("date") String date);
 
    List<MdcProductDayschedule> todayProductionPassRate(@Param("date") String date);
 
    List<ClazzCompletionCountDto> todayClazzCompletionCount(@Param("date") String date);
 
    List<MdcEfficiencyDto> efficiencyList(@Param("date") String date);
 
    List<MdcEfficiencyDto> efficiency(@Param("startDate") String startDate, @Param("endDate") String endDate);
}