SysAlarmMapper.java 562 B

123456789101112131415161718192021222324
  1. package com.aidex.system.mapper;
  2. import com.aidex.common.core.mapper.BaseMapper;
  3. import org.apache.ibatis.annotations.Param;
  4. import com.aidex.system.domain.SysAlarm;
  5. /**
  6. * 报警信息Mapper接口
  7. * @author ChenSir
  8. * @email 914769835
  9. * @date 2024-03-17
  10. */
  11. public interface SysAlarmMapper extends BaseMapper<SysAlarm>
  12. {
  13. /**
  14. * 批量删除报警信息
  15. * @param ids 需要删除的报警信息ID集合
  16. * @return
  17. */
  18. public int deleteSysAlarmByIds(@Param("ids") String[] ids, @Param("DEL_FLAG_DELETE") String DEL_FLAG_DELETE);
  19. }