You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
937 B
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.ipsplm.service.simulation;
import com.ipsplm.entity.simulation.*;
import com.ipsplm.entity.simulation.vo.OeeVO;
import com.ipsplm.entity.simulation.vo.PlantEquipmentUtilizationVO;
import java.util.List;
import java.util.Map;
/**
* @Description 仿真分析接口层
* @Author lulicheng
* @Date 2024-07-31 1020
* @Version 1.0
*/
public interface ISimulationAnalysisService {
/**
* 获取厂房设备利用率信息
*
* @param flag
* @return
*/
Map<String,Object> getPlantEquipmentUtilization(Long flag);
/**
* 获取工序列表
* @param tableCode
* @return
*/
List<String> getProcessList(String tableCode);
/**
* 获取缓存数量时间
* @param process
* @return
*/
Object getBufferNum(String process);
/**
* 获取OEE数据
* @param tableCode
* @return
*/
Object getOee(String tableCode);
}