liusheng
2023-07-28 21bc49712f298f8c2619341279e7906dfb278944
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.ServiceExpertexpense;
 
/**
 * 费用申请主Service接口
 * 
 * @author ruoyi
 * @date 2022-03-01
 */
public interface IServiceExpertexpenseService extends IService<ServiceExpertexpense>
{
 
    /**
     * 查询费用申请主列表
     * 
     * @param serviceExpertexpense 费用申请主
     * @return 费用申请主集合
     */
    public List<ServiceExpertexpense> queryList(ServiceExpertexpense serviceExpertexpense);
}