package com.gkhy.labRiskManage.domain.riskReport.service; import com.gkhy.labRiskManage.domain.riskReport.entity.RiskAssessPlanIdentificationJha; import com.gkhy.labRiskManage.domain.riskReport.entity.RiskAssessPlanIdentificationUser; import com.gkhy.labRiskManage.domain.riskReport.model.bo.AssessRsInsertBO; import com.gkhy.labRiskManage.domain.riskReport.model.dto.IdentificationMethodDeleteDTO; import com.gkhy.labRiskManage.domain.riskReport.model.dto.JhaInsertDTO; import com.gkhy.labRiskManage.domain.riskReport.model.dto.JhaQueryDTO; import com.gkhy.labRiskManage.domain.riskReport.model.dto.RsInsertDTO; import java.time.LocalDateTime; import java.util.List; /** * 辨识方法-Jha */ public interface RiskAssessPlanIdentificationUserService { int InsertData(List saveList); int deleteByPlanId(Long id, LocalDateTime date); List getAssessPlanIdentificationUserPlanId(Long planId, Long userId); }