1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| package com.ruoyi.project.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.ruoyi.project.domain.ServiceTransportFile;
|
| import java.util.List;
| import java.util.Map;
|
| /**
| * 供者转运登记附件Service接口
| *
| * @author ruoyi
| * @date 2025-12-15
| */
| public interface IServiceTransportFileService extends IService<ServiceTransportFile>
| {
|
| /**
| * 查询供者转运登记附件列表
| *
| * @param serviceTransportFile 供者转运登记附件
| * @return 供者转运登记附件集合
| */
| public List<ServiceTransportFile> queryList(ServiceTransportFile serviceTransportFile);
|
| public Boolean addList(List<ServiceTransportFile> annexfilesList, Long transportId,String caseNo,String updateName);
|
| public Boolean updateList(List<ServiceTransportFile> annexfilesList,Long reportId,String caseNo,String updateName);
| }
|
|