1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.ruoyi.project.mapper;
|
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.ruoyi.project.domain.BaseOrgancharge;
|
| import java.util.List;
|
| /**
| * 人体器官获取费用Mapper接口
| *
| * @author ruoyi
| * @date 2023-10-08
| */
| public interface BaseOrganchargeMapper extends BaseMapper<BaseOrgancharge>
| {
| /**
| * 查询人体器官获取费用列表
| *
| * @param baseOrgancharge 人体器官获取费用
| * @return 人体器官获取费用集合
| */
| public List<BaseOrgancharge> selectBaseOrganchargeList(BaseOrgancharge baseOrgancharge);
| }
|
|