songhuangfeng123
2022-09-07 471e7d6d238e22308e0457aa03c8f8ff62cd6340
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);
}