liusheng
2024-02-26 b891387422e8af819a59dafa3c650cd4e3dc43dc
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 java.util.List;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.project.domain.BaseExpertfeetype;
 
/**
 * 专家费用Service接口
 * 
 * @author ruoyi
 * @date 2022-04-19
 */
public interface IBaseExpertfeetypeService extends IService<BaseExpertfeetype>
{
 
    /**
     * 查询专家费用列表
     * 
     * @param baseExpertfeetype 专家费用
     * @return 专家费用集合
     */
    public List<BaseExpertfeetype> queryList(BaseExpertfeetype baseExpertfeetype);
}