zhangfeng
2022-10-10 1305d0aa469fe7330fd2f8e9fbb10d95042571be
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);
}