package com.gkhy.labRiskManage.domain.experiment.service; import com.gkhy.labRiskManage.application.experiment.dto.bo.ExperimentAndStuffAppInsertBO; import java.util.List; /** * 实验与耗材 */ public interface ExperimentAndStuffService { boolean saveBatch(Long currentUserId, List stuffAppInsertBOList); void deleteByExperimentId(Long experimentId, Long currentUserId); }