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.

65 lines
1.1 KiB
Java

package com.ipsplm.service.simulation;
9 months ago
import com.ipsplm.entity.simulation.*;
import com.ipsplm.entity.simulation.vo.PlantEquipmentUtilizationVO;
9 months ago
import java.util.List;
/**
* @Description 仿
* @Author lulicheng
* @Date 2024-07-31 1020
* @Version 1.0
*/
public interface ISimulationAnalysisService {
/**
*
* @param flag
* @return
*/
PlantEquipmentUtilizationVO getPlantEquipmentUtilization(Long flag);
9 months ago
/**
* OEE
* @return
*/
List<OeeBxg> getOeeBxg();
/**
* 线OEE
* @return
*/
List<OeeDj> getOeeDj();
/**
* 线OEE
* @return
*/
List<OeeXe> getOeeXe();
/**
* 线OEE
* @return
*/
List<OeeXy> getOeeXy();
/**
* 线OEE
* @return
*/
List<OeeZe> getOeeZe();
/**
* 线OEE
* @return
*/
List<OeeZy> getOeeZy();
/**
*
* @param tableCode
* @return
*/
List<String> getProcessList(String tableCode);
}