liusheng
2024-04-09 4207b9bd1dd2f81eea512a82085c4083be5e6d44
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.ruoyi.project.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.project.domain.ServiceDonateorganstatics;
 
import java.util.List;
 
/**
 * 捐献案例器官列Service接口
 *
 * @author ruoyi
 * @date 2023-12-27
 */
public interface IServiceDonateorganstaticsService extends IService<ServiceDonateorganstatics> {
 
    /**
     * 查询捐献案例器官列列表
     *
     * @param serviceDonateorganstatics 捐献案例器官列
     * @return 捐献案例器官列集合
     */
    public List<ServiceDonateorganstatics> queryList(ServiceDonateorganstatics serviceDonateorganstatics);
}