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 todayProductionSchedule(@Param("date") String date); List todayProductionPassRate(@Param("date") String date); List todayClazzCompletionCount(@Param("date") String date); List efficiencyList(@Param("date") String date); List efficiency(@Param("startDate") String startDate, @Param("endDate") String endDate); }