ximon-admin/src/main/java/com/sandu/ximon/admin/service/LEDProgramService.java
@@ -62,13 +62,13 @@ } public boolean deleteProgram(Long id) { LEDProgram byId = getById(id); if (byId == null) { public boolean deleteProgram(List<Long> pids) { List<LEDProgram> ledPrograms = listByIds(pids); if (ledPrograms.isEmpty()) { throw new BusinessException("未找到该节目"); } return removeById(id); return removeByIds(pids); }