cuilei
2025-06-11 cd00884c3db8fa6808b3b5949ab1a2b1459d6bdc
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.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.jeecg.modules.mdc.entity.MdcAlarmInfo;
import org.jeecg.modules.mdc.mapper.MdcAlarmInfoMapper;
import org.jeecg.modules.mdc.service.IMdcAlarmInfoService;
import org.springframework.stereotype.Service;
 
/**
 * @Description: 报警号管理
 * @Author: Lius
 * @Date: 2023-09-05
 * @Version: V1.0
 */
@Service
public class MdcAlarmInfoServiceImpl extends ServiceImpl<MdcAlarmInfoMapper, MdcAlarmInfo> implements IMdcAlarmInfoService {
 
    @Override
    public MdcAlarmInfo findAlarmContent(String alarmNo, String equipmentId) {
        return this.baseMapper.findAlarmContent(alarmNo, equipmentId);
    }
}