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<TodayProductionDto> todayProductionSchedule();
|
|
/**
|
* 今日产品合格率
|
*
|
* @return
|
*/
|
List<TodayProductionPassRateDto> todayProductionPassRate();
|
|
/**
|
* 今日班组完成量
|
*
|
* @return
|
*/
|
List<ClazzCompletionCountDto> todayClazzCompletionCount();
|
|
/**
|
* 今日设备工作效率
|
*
|
* @return
|
*/
|
List<EquipmentRateDto> todayEquipmentRate();
|
|
/**
|
* 月设备利用率
|
*
|
* @return
|
*/
|
List<MonthEquipmentUtilizationRateDto> monthEquipmentUtilizationRate();
|
|
/**
|
* 产线列表
|
* @return
|
*/
|
List<MdcProduction> productionList();
|
|
}
|