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.

20 lines
478 B
Java

package com.ipsplm.dao.simulation;
import com.ipsplm.entity.simulation.vo.PlantEquipmentUtilizationVO;
import org.apache.ibatis.annotations.Mapper;
/**
* @Description 仿Mapper
* @Author lulicheng
* @Date 2024-07-31 1022
* @Version 1.0
*/
@Mapper
public interface SimulationAnalysisMapper {
/**
*
* @param flag
* @return
*/
PlantEquipmentUtilizationVO getPlantEquipmentUtilization(Long flag);
}