package com.gkhy.labRiskManage.domain.experiment.service; import com.gkhy.labRiskManage.application.experiment.dto.bo.ExperimentHazardousWasteAppInsertBO; import java.util.List; /** * 实验危废物 */ public interface ExperimentHazardousWasteService { boolean saveBatch(Long currentUserId, List hazardousWasteAppInsertBOList); void deleteByExperimentId(Long experimentId, Long currentUserId); }