Lius
2025-03-04 7c0f82055e064831c9971aad068106241705030e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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);
}