package com.gkhy.safePlatform.incidentManage.service.baseService; import com.baomidou.mybatisplus.extension.service.IService; import com.gkhy.safePlatform.incidentManage.entity.AccidentReportFileInfo; import com.gkhy.safePlatform.incidentManage.entity.AccidentReportFileInfoDO; import java.util.List; public interface AccidentReportFileInfoService extends IService { List selectByAccidentReportId(Long id); void addAccidentReportFile(AccidentReportFileInfo AccidentReportFileInfo); void deleteAccidentReportFileByAccidentReportId(Long accidentReportId); void deleteAccidentReportFileByIds(List deleteList); }