zhangf
2024-05-08 0414ddb0b2b3a7199ae6181a770f97ac140dbd73
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);
}