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.

117 lines
2.3 KiB
Java

package com.ipsplm.dao.simulation;
9 months ago
import com.ipsplm.entity.simulation.*;
import com.ipsplm.entity.simulation.vo.BufferVO;
import com.ipsplm.entity.simulation.vo.PlantEquipmentUtilizationVO;
import org.apache.ibatis.annotations.Mapper;
9 months ago
import java.util.List;
/**
* @Description 仿Mapper
* @Author lulicheng
* @Date 2024-07-31 1022
* @Version 1.0
*/
@Mapper
public interface SimulationAnalysisMapper {
/**
*
* @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);
/**
*
* @param process
* @return
*/
List<BufferVO> getBufferName(String process);
/**
*
* @param bufferNameList
* @return
*/
List<BufferNumBxg> getBufferNumBxg(List<BufferVO> bufferNameList);
/**
* 线
* @param bufferNameList
* @return
*/
List<BufferNumDj> getBufferNumDj(List<BufferVO> bufferNameList);
/**
* 线
* @param bufferNameList
* @return
*/
List<BufferNumXe> getBufferNumXe(List<BufferVO> bufferNameList);
/**
* 线
* @param bufferNameList
* @return
*/
List<BufferNumXy> getBufferNumXy(List<BufferVO> bufferNameList);
/**
* 线
* @param bufferNameList
* @return
*/
List<BufferNumZe> getBufferNumZe(List<BufferVO> bufferNameList);
/**
* 线
* @param bufferNameList
* @return
*/
List<BufferNumZy> getBufferNumZy(List<BufferVO> bufferNameList);
}