package org.jeecg.modules.mdc.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Param;
|
import org.jeecg.modules.mdc.entity.EquipmentAlarm;
|
import org.jeecg.modules.screen.dto.AlarmInfoDto;
|
|
import java.util.List;
|
|
/**
|
* @author: LiuS
|
* @create: 2023-04-12 16:39
|
*/
|
public interface EquipmentAlarmMapper extends BaseMapper<EquipmentAlarm> {
|
/**
|
* 根据扯筋id获取报警信息
|
*
|
* @param productionId
|
* @return
|
*/
|
List<AlarmInfoDto> getAlarmInfo(@Param("productionId") String productionId);
|
}
|