yb
3 天以前 bbfc6a9a5b3a899c7405d06454d315d8c283e23f
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);
}