songhuangfeng123
2022-08-08 2f71d2a6f77277766f81ecfcfc1df19a4784e897
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);
}