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

package com.ipsplm.service.simulation;
9 months ago
import com.ipsplm.entity.simulation.*;
9 months ago
import com.ipsplm.entity.simulation.vo.OeeVO;
import com.ipsplm.entity.simulation.vo.PlantEquipmentUtilizationVO;
9 months ago
import java.util.List;
9 months ago
import java.util.Map;
9 months ago
/**
* @Description 仿
* @Author lulicheng
* @Date 2024-07-31 1020
* @Version 1.0
*/
public interface ISimulationAnalysisService {
/**
*
9 months ago
*
* @param flag
* @return
*/
9 months ago
Map<String,Object> getPlantEquipmentUtilization(Long flag);
/**
*
* @param tableCode
* @return
*/
List<String> getProcessList(String tableCode);
/**
*
* @param process
* @return
*/
Object getBufferNum(String process);
9 months ago
/**
* OEE
* @param tableCode
* @return
*/
Object getOee(String tableCode);
}