liusheng
2025-12-28 73f5b82df781d2b061ba24d29182f6898b5535d9
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.ServiceDonatebaseinfoReportFile;
 
import java.util.List;
import java.util.Map;
 
/**
 * 案例上报附件Service接口
 *
 * @author ruoyi
 * @date 2025-12-15
 */
public interface IServiceDonatebaseinfoReportFileService extends IService<ServiceDonatebaseinfoReportFile> {
 
    /**
     * 查询案例上报附件列表
     *
     * @param serviceDonatebaseinfoReportFile 案例上报附件
     * @return 案例上报附件集合
     */
    public List<ServiceDonatebaseinfoReportFile> queryList(ServiceDonatebaseinfoReportFile serviceDonatebaseinfoReportFile);
 
    //批量上传
    public Boolean addList(List<ServiceDonatebaseinfoReportFile> serviceDonatebaseinfoReportFiles,String caseNo,String updateName);
 
    public Boolean updateList(List<ServiceDonatebaseinfoReportFile> serviceDonatebaseinfoReportFiles, Long reportId,String caseNo,String updateName);
}