123456789101112131415161718192021222324 |
- package com.aidex.system.mapper;
- import com.aidex.common.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Param;
- import com.aidex.system.domain.SysAlarm;
- /**
- * 报警信息Mapper接口
- * @author ChenSir
- * @email 914769835
- * @date 2024-03-17
- */
- public interface SysAlarmMapper extends BaseMapper<SysAlarm>
- {
- /**
- * 批量删除报警信息
- * @param ids 需要删除的报警信息ID集合
- * @return
- */
- public int deleteSysAlarmByIds(@Param("ids") String[] ids, @Param("DEL_FLAG_DELETE") String DEL_FLAG_DELETE);
- }
|