songhuangfeng123
2022-09-19 ab2b3291cb9e21885ed878d60f5afd6640d830f3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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<AccidentReportFileInfo> {
 
    List<AccidentReportFileInfoDO> selectByAccidentReportId(Long id);
 
    void addAccidentReportFile(AccidentReportFileInfo AccidentReportFileInfo);
 
    void deleteAccidentReportFileByAccidentReportId(Long accidentReportId);
 
    void deleteAccidentReportFileByIds(List<Long> deleteList);
}