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.

58 lines
1013 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.PlantEquipmentUtilizationVO;
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);
/**
* 获取不锈钢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();
}