package org.jeecg.modules.screen.service; import org.jeecg.modules.screen.dto.*; import org.jeecg.modules.system.entity.MdcProduction; import java.util.List; import java.util.Map; /** * @author Lius * @date 2024/8/19 16:02 */ public interface MdcLargeScreenService { /** * 昨日概况(产品合格率 设备利用率 计划完成率) * * @return */ YesterdayOverviewDto yesterdayOverview(); /** * 今日生产进度 * * @return */ List todayProductionSchedule(); /** * 今日产品合格率 * * @return */ List todayProductionPassRate(); /** * 今日班组完成量 * * @return */ List todayClazzCompletionCount(); /** * 今日设备工作效率 * * @return */ List todayEquipmentRate(); /** * 月设备利用率 * * @return */ List monthEquipmentUtilizationRate(); /** * 产线列表 * @return */ List productionList(); }