@Transactional public void deleteByIds(List<String> rowIds) { if (rowIds != null && !rowIds.isEmpty()) { for (String rowId : rowIds) { cellUpicInfoMapper.deleteCellUpicInfoById(rowId); } } }
@Transactional public void deleteById(String id) { cellUpicInfoMapper.deleteCellUpicInfoById(id); }