kongzy
2024-09-23 d015cc0b48ca51a2b93b6c60c91dc352a104b1e7
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.AccidentExpressFileInfo;
import com.gkhy.safePlatform.incidentManage.entity.AccidentExpressFileInfoDO;
 
import java.util.List;
 
 
public interface AccidentExpressFileInfoService extends IService<AccidentExpressFileInfo> {
 
    List<AccidentExpressFileInfoDO> selectByAccidentExpressId(Long id);
 
    void addAccidentExpressFile(AccidentExpressFileInfo AccidentExpressFileInfo);
 
    void deleteAccidentExpressFileByAccidentExpressId(Long accidentExpressId);
 
    void deleteAccidentExpressFileByIds(List<Long> deleteList);
}